mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-24 23:08:08 +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 ko from 'ko';
|
||||||
|
|
||||||
import { addObservablesTo, addComputablesTo, addSubscribablesTo } from 'External/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 { ViewTypePopup, showScreenPopup } from 'Knoin/Knoin';
|
||||||
|
|
||||||
import { SaveSettingsStep } from 'Common/Enums';
|
import { SaveSettingsStep } from 'Common/Enums';
|
||||||
|
@ -160,9 +160,16 @@ export class AbstractViewLogin extends AbstractView {
|
||||||
}
|
}
|
||||||
|
|
||||||
onShow() {
|
onShow() {
|
||||||
|
elementById('rl-left').hidden = true;
|
||||||
|
elementById('rl-right').hidden = true;
|
||||||
rl.route.off();
|
rl.route.off();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
onHide() {
|
||||||
|
elementById('rl-left').hidden = false;
|
||||||
|
elementById('rl-right').hidden = false;
|
||||||
|
}
|
||||||
|
|
||||||
submitForm() {
|
submitForm() {
|
||||||
// return false;
|
// return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue