From 20a5154c8cd49fa268e3f1695d0e0f9c9d77e76c Mon Sep 17 00:00:00 2001 From: Miodec Date: Fri, 18 Mar 2022 14:25:08 +0100 Subject: [PATCH] allowing tab navigation in popups --- frontend/src/scripts/controllers/input-controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/scripts/controllers/input-controller.ts b/frontend/src/scripts/controllers/input-controller.ts index db2db845e..6c8463d23 100644 --- a/frontend/src/scripts/controllers/input-controller.ts +++ b/frontend/src/scripts/controllers/input-controller.ts @@ -581,7 +581,7 @@ function handleTab(event: JQuery.KeyDownEvent, popupVisible: boolean): void { event.preventDefault(); } if (ActivePage.get() !== "test" && popupVisible) { - event.preventDefault(); + // event.preventDefault(); return; } if ($("#customTextPopup .textarea").is(":focus")) {