aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-04-22 21:42:20 -0400
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-04-22 21:42:20 -0400
commitd8276a9d5d119edf1747593608d3e135947019f0 (patch)
tree455373d756a1759582bbdd9b9d69d7eb7d8e220c
parentd106c638ed69b2c72895c1040b0e7bea2e31cdb7 (diff)
Use IIFE for entry points
-rw-r--r--ext/bg/js/background-main.js6
-rw-r--r--ext/bg/js/context-main.js6
-rw-r--r--ext/bg/js/search-main.js6
-rw-r--r--ext/bg/js/settings/popup-preview-frame-main.js6
-rw-r--r--ext/fg/js/content-script-main.js6
-rw-r--r--ext/fg/js/float-main.js6
6 files changed, 12 insertions, 24 deletions
diff --git a/ext/bg/js/background-main.js b/ext/bg/js/background-main.js
index c000c38d..24117f4e 100644
--- a/ext/bg/js/background-main.js
+++ b/ext/bg/js/background-main.js
@@ -19,9 +19,7 @@
* Backend
*/
-async function main() {
+(async () => {
window.yomichanBackend = new Backend();
await window.yomichanBackend.prepare();
-}
-
-main();
+})();
diff --git a/ext/bg/js/context-main.js b/ext/bg/js/context-main.js
index 67bb4e18..e2086a96 100644
--- a/ext/bg/js/context-main.js
+++ b/ext/bg/js/context-main.js
@@ -88,8 +88,6 @@ async function mainInner() {
});
}
-async function main() {
+(async () => {
window.addEventListener('DOMContentLoaded', mainInner, false);
-}
-
-main();
+})();
diff --git a/ext/bg/js/search-main.js b/ext/bg/js/search-main.js
index 91c39222..38b6d99a 100644
--- a/ext/bg/js/search-main.js
+++ b/ext/bg/js/search-main.js
@@ -52,7 +52,7 @@ function injectSearchFrontend() {
}
}
-async function main() {
+(async () => {
await yomichan.prepare();
const displaySearch = new DisplaySearch();
@@ -78,6 +78,4 @@ async function main() {
yomichan.on('optionsUpdated', applyOptions);
await applyOptions();
-}
-
-main();
+})();
diff --git a/ext/bg/js/settings/popup-preview-frame-main.js b/ext/bg/js/settings/popup-preview-frame-main.js
index e6e4727f..86c2814c 100644
--- a/ext/bg/js/settings/popup-preview-frame-main.js
+++ b/ext/bg/js/settings/popup-preview-frame-main.js
@@ -19,9 +19,7 @@
* SettingsPopupPreview
*/
-async function main() {
+(async () => {
const instance = new SettingsPopupPreview();
await instance.prepare();
-}
-
-main();
+})();
diff --git a/ext/fg/js/content-script-main.js b/ext/fg/js/content-script-main.js
index 974320cc..14285536 100644
--- a/ext/fg/js/content-script-main.js
+++ b/ext/fg/js/content-script-main.js
@@ -61,7 +61,7 @@ async function createPopupProxy(depth, id, parentFrameId, url) {
return popup;
}
-async function contentScriptMain() {
+(async () => {
await yomichan.prepare();
const data = window.frontendInitializationData || {};
@@ -128,6 +128,4 @@ async function contentScriptMain() {
window.addEventListener('fullscreenchange', applyOptions, false);
await applyOptions();
-}
-
-contentScriptMain();
+})();
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();
+})();