mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-08 22:18:28 +03:00
Fix decrypt message password input focus (Closes #133)
This commit is contained in:
parent
399aec3514
commit
530f5e7741
4 changed files with 12 additions and 4 deletions
|
|
@ -358,7 +358,11 @@ MailBoxMessageViewViewModel.prototype.onBuild = function (oDom)
|
|||
;
|
||||
|
||||
this.message.focused.subscribe(function (bValue) {
|
||||
this.messageDomFocused(!!bValue);
|
||||
if (bValue && !Utils.inFocus()) {
|
||||
this.messageDomFocused(true);
|
||||
} else {
|
||||
this.messageDomFocused(false);
|
||||
}
|
||||
}, this);
|
||||
|
||||
this.messageDomFocused.subscribe(function (bValue) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue