diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2024-02-18 09:27:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-18 14:27:16 +0000 |
commit | 65fa65fc7765bc9a6557d3ce6f8bdcef5b5e0cf7 (patch) | |
tree | 4e91bc8ec3e0dadbabe3e3d4c6c92d2b6f9fd2a5 /ext/js/pages/action-popup-main.js | |
parent | cfc65c31313731dfa0d36c2eceaca35e9d50992f (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/pages/action-popup-main.js')
-rw-r--r-- | ext/js/pages/action-popup-main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/pages/action-popup-main.js b/ext/js/pages/action-popup-main.js index f58083a7..0a14c669 100644 --- a/ext/js/pages/action-popup-main.js +++ b/ext/js/pages/action-popup-main.js @@ -306,7 +306,7 @@ class DisplayController { } } -await Application.main(async (application) => { +await Application.main(true, async (application) => { application.api.logIndicatorClear(); const displayController = new DisplayController(application.api); |