mirror of
https://github.com/zen-browser/pdf.js.git
synced 2025-07-08 09:20:06 +02:00
Document properties
This commit is contained in:
parent
c6d201b13b
commit
5f7ded4ff6
10 changed files with 385 additions and 18 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue