Skip to content

Commit

Permalink
Fix ID banner (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
bongiovimatthew-microsoft authored May 29, 2018
1 parent 15d2fb9 commit 9b5dca0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions centeredUi/paginatedOnload.js
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ function ShowPasswordPage()

if ( idBanner )
{
idBanner.innerHTML = usernameInput.value;
idBanner.innerText = usernameInput.value;
}

// Create the ID Banner if we need to
Expand All @@ -711,7 +711,7 @@ function ShowPasswordPage()
var idBanner = document.createElement("div");
idBanner.id = "identityBanner";
idBanner.className = "identityBanner";
idBanner.innerHTML = usernameInput.value;
idBanner.innerText = usernameInput.value;

// Add the newly-created element
workArea.insertBefore(idBanner, workArea.firstChild);
Expand Down

0 comments on commit 9b5dca0

Please sign in to comment.