summaryrefslogtreecommitdiff
path: root/ext/js/app
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2024-02-18 09:27:16 -0500
committerGitHub <noreply@github.com>2024-02-18 14:27:16 +0000
commit65fa65fc7765bc9a6557d3ce6f8bdcef5b5e0cf7 (patch)
tree4e91bc8ec3e0dadbabe3e3d4c6c92d2b6f9fd2a5 /ext/js/app
parentcfc65c31313731dfa0d36c2eceaca35e9d50992f (diff)
Application main updates (#708)
* Move waitForBackendReady * Add option to wait for DOM before running main * Move script load to be earlier
Diffstat (limited to 'ext/js/app')
-rw-r--r--ext/js/app/content-script-main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/app/content-script-main.js b/ext/js/app/content-script-main.js
index 34160fd1..c17acbfe 100644
--- a/ext/js/app/content-script-main.js
+++ b/ext/js/app/content-script-main.js
@@ -21,7 +21,7 @@ import {HotkeyHandler} from '../input/hotkey-handler.js';
import {Frontend} from './frontend.js';
import {PopupFactory} from './popup-factory.js';
-await Application.main(async (application) => {
+await Application.main(false, async (application) => {
const hotkeyHandler = new HotkeyHandler();
hotkeyHandler.prepare(application.crossFrame);