This commit is contained in:
the-djmaze 2022-05-19 21:16:00 +02:00
parent ad058674f6
commit 562e1e5e68

View file

@ -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;
}