mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-24 14:57:26 +08:00
Resolve #413
This commit is contained in:
parent
ad058674f6
commit
562e1e5e68
1 changed files with 8 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
import ko from 'ko';
|
||||
|
||||
import { addObservablesTo, addComputablesTo, addSubscribablesTo } from 'External/ko';
|
||||
import { keyScope, SettingsGet, leftPanelDisabled } from 'Common/Globals';
|
||||
import { keyScope, SettingsGet, leftPanelDisabled, elementById } from 'Common/Globals';
|
||||
import { ViewTypePopup, showScreenPopup } from 'Knoin/Knoin';
|
||||
|
||||
import { SaveSettingsStep } from 'Common/Enums';
|
||||
|
@ -160,9 +160,16 @@ export class AbstractViewLogin extends AbstractView {
|
|||
}
|
||||
|
||||
onShow() {
|
||||
elementById('rl-left').hidden = true;
|
||||
elementById('rl-right').hidden = true;
|
||||
rl.route.off();
|
||||
}
|
||||
|
||||
onHide() {
|
||||
elementById('rl-left').hidden = false;
|
||||
elementById('rl-right').hidden = false;
|
||||
}
|
||||
|
||||
submitForm() {
|
||||
// return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue