mirror of
http://git.whoc.org.uk/git/password-manager.git
synced 2024-11-14 23:39:02 +01:00
Fixed overlay glitch
This commit is contained in:
parent
8cc2ad14b2
commit
7558080e54
@ -56,6 +56,8 @@ Clipperz.Base.extend(Clipperz.PM.UI.Components.Overlay, Object, {
|
|||||||
'show': function (aMessage, showMask, showProgress, showOnCardDetail) {
|
'show': function (aMessage, showMask, showProgress, showOnCardDetail) {
|
||||||
if (showMask === true) {
|
if (showMask === true) {
|
||||||
this.showMask(showOnCardDetail);
|
this.showMask(showOnCardDetail);
|
||||||
|
} else {
|
||||||
|
this.hideMask();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (showProgress === true) {
|
if (showProgress === true) {
|
||||||
|
@ -362,7 +362,7 @@ Clipperz.log("THE BROWSER IS OFFLINE");
|
|||||||
|
|
||||||
user = null;
|
user = null;
|
||||||
|
|
||||||
this.overlay().show("logging in");
|
this.overlay().show("logging in", false, false);
|
||||||
this.pages()['loginPage'].setProps({disabled:true});
|
this.pages()['loginPage'].setProps({disabled:true});
|
||||||
|
|
||||||
if ('pin' in someCredentials) {
|
if ('pin' in someCredentials) {
|
||||||
@ -447,7 +447,7 @@ Clipperz.log("THE BROWSER IS OFFLINE");
|
|||||||
var unlockPage = this.pages()['unlockPage'];
|
var unlockPage = this.pages()['unlockPage'];
|
||||||
var overlay = this.overlay();
|
var overlay = this.overlay();
|
||||||
|
|
||||||
overlay.show("validating…");
|
overlay.show("validating…", false);
|
||||||
passphrase = (aCredentialType=='PIN') ? Clipperz.PM.PIN.credentialsWithPIN(aCredential)['passphrase'] : aCredential;
|
passphrase = (aCredentialType=='PIN') ? Clipperz.PM.PIN.credentialsWithPIN(aCredential)['passphrase'] : aCredential;
|
||||||
|
|
||||||
getPassphraseDelegate = MochiKit.Base.partial(MochiKit.Async.succeed, passphrase);
|
getPassphraseDelegate = MochiKit.Base.partial(MochiKit.Async.succeed, passphrase);
|
||||||
|
Loading…
Reference in New Issue
Block a user