Document properties

This commit is contained in:
Tim van der Meij 2014-01-22 00:07:07 +01:00
parent c6d201b13b
commit 5f7ded4ff6
10 changed files with 385 additions and 18 deletions

View file

@ -62,6 +62,7 @@ var PasswordPrompt = {
}
this.visible = true;
this.overlayContainer.classList.remove('hidden');
this.overlayContainer.firstElementChild.classList.remove('hidden');
this.passwordField.focus();
var promptString = mozL10n.get('password_label', null,
@ -82,6 +83,7 @@ var PasswordPrompt = {
this.visible = false;
this.passwordField.value = '';
this.overlayContainer.classList.add('hidden');
this.overlayContainer.firstElementChild.classList.add('hidden');
},
verifyPassword: function passwordPromptVerifyPassword() {