allowing tab navigation on login page

This commit is contained in:
Miodec 2022-05-24 16:08:51 +02:00
parent c12579eb4a
commit 4166003f21

View file

@ -615,6 +615,9 @@ function handleTab(event: JQuery.KeyDownEvent, popupVisible: boolean): void {
// dont do anything special
if (modalVisible) return;
// dont do anything on login so we can tab betweeen inputs
if (ActivePage.get() === "login") return;
// change page if not on test page
if (ActivePage.get() !== "test") {
PageController.change("test");