diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2024-02-07 02:55:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-07 07:55:48 +0000 |
commit | dc22c0260e55121b2930f8bf8761271ba977503f (patch) | |
tree | 1c5cf6d59fb600dfc03e46f11d3fba3dfb30c8f1 /ext/js/pages/action-popup-main.js | |
parent | 376bac7195bf2114da8b234ffa64af9751b4466d (diff) |
Update application init process (#634)
Diffstat (limited to 'ext/js/pages/action-popup-main.js')
-rw-r--r-- | ext/js/pages/action-popup-main.js | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/ext/js/pages/action-popup-main.js b/ext/js/pages/action-popup-main.js index 6d2c85ab..e5738878 100644 --- a/ext/js/pages/action-popup-main.js +++ b/ext/js/pages/action-popup-main.js @@ -305,17 +305,9 @@ class DisplayController { } } -/** Entry point. */ -async function main() { - const application = new Application(); - await application.prepare(); - +await Application.main(async (application) => { application.api.logIndicatorClear(); const displayController = new DisplayController(application.api); displayController.prepare(); - - application.ready(); -} - -await main(); +}); |