aboutsummaryrefslogtreecommitdiff
path: root/ext/js/background/offscreen-main.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2023-12-20 00:43:41 -0500
committerGitHub <noreply@github.com>2023-12-20 05:43:41 +0000
commitad94a56e573553f3c66e8fcccff3042544faeb1b (patch)
treed5ea82322e9face770f709520c219e1b6edf4893 /ext/js/background/offscreen-main.js
parentd6dcf8288a77996d2aba989a26d2a21f7ebf4b33 (diff)
Add Offscreen.prepare for constructor side effects (#402)
Diffstat (limited to 'ext/js/background/offscreen-main.js')
-rw-r--r--ext/js/background/offscreen-main.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/ext/js/background/offscreen-main.js b/ext/js/background/offscreen-main.js
index f85908bd..aac5b8f2 100644
--- a/ext/js/background/offscreen-main.js
+++ b/ext/js/background/offscreen-main.js
@@ -19,8 +19,9 @@
import {Offscreen} from './offscreen.js';
/** Entry point. */
-async function main() {
- new Offscreen();
+function main() {
+ const offscreen = new Offscreen();
+ offscreen.prepare();
}
-await main();
+main();