diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-04-22 21:42:20 -0400 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-04-22 21:42:20 -0400 |
commit | d8276a9d5d119edf1747593608d3e135947019f0 (patch) | |
tree | 455373d756a1759582bbdd9b9d69d7eb7d8e220c /ext/fg/js/float-main.js | |
parent | d106c638ed69b2c72895c1040b0e7bea2e31cdb7 (diff) |
Use IIFE for entry points
Diffstat (limited to 'ext/fg/js/float-main.js')
-rw-r--r-- | ext/fg/js/float-main.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ext/fg/js/float-main.js b/ext/fg/js/float-main.js index 072c86e0..f056f707 100644 --- a/ext/fg/js/float-main.js +++ b/ext/fg/js/float-main.js @@ -67,8 +67,6 @@ async function popupNestedInitialize(id, depth, parentFrameId, url) { await applyOptions(); } -async function main() { +(async () => { new DisplayFloat(); -} - -main(); +})(); |