aboutsummaryrefslogtreecommitdiff
path: root/app/src/web/ts/menu.ts
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/web/ts/menu.ts')
-rw-r--r--app/src/web/ts/menu.ts10
1 files changed, 2 insertions, 8 deletions
diff --git a/app/src/web/ts/menu.ts b/app/src/web/ts/menu.ts
index a288ba07..5b3e6fa9 100644
--- a/app/src/web/ts/menu.ts
+++ b/app/src/web/ts/menu.ts
@@ -1,4 +1,4 @@
-// Click menu and move contents to main view
+// Click menu after delay and notify
(function () {
const viewport = document.querySelector("#viewport");
const root = document.querySelector("#root");
@@ -20,12 +20,6 @@
return
}
- // menu container
- const bookmarkFlyout = document.querySelector('#bookmarks_flyout');
- if (bookmarkFlyout instanceof HTMLElement) {
- bookmarkFlyout.style.marginTop = "0";
- }
-
// Js handling is a bit slow so we need to wait
setTimeout(() => {
menuA.click();
@@ -34,5 +28,5 @@
setTimeout(() => {
Frost.emit(0);
}, 100);
- }, 200);
+ }, 500);
}).call(undefined);