From 4d3d5d9ccb1c8ffbac0be0dc348790b34f68a564 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Sun, 19 Apr 2020 14:28:07 -0400 Subject: [PATCH] Rename search-frontend.js to search-main.js Also move DisplaySearch creation into the main() function. --- ext/bg/js/{search-frontend.js => search-main.js} | 4 ++++ ext/bg/js/search.js | 8 -------- ext/bg/search.html | 3 ++- 3 files changed, 6 insertions(+), 9 deletions(-) rename ext/bg/js/{search-frontend.js => search-main.js} (95%) diff --git a/ext/bg/js/search-frontend.js b/ext/bg/js/search-main.js similarity index 95% rename from ext/bg/js/search-frontend.js rename to ext/bg/js/search-main.js index bda46a98..91c39222 100644 --- a/ext/bg/js/search-frontend.js +++ b/ext/bg/js/search-main.js @@ -16,6 +16,7 @@ */ /* global + * DisplaySearch * apiOptionsGet */ @@ -54,6 +55,9 @@ function injectSearchFrontend() { async function main() { await yomichan.prepare(); + const displaySearch = new DisplaySearch(); + await displaySearch.prepare(); + let optionsApplied = false; const applyOptions = async () => { diff --git a/ext/bg/js/search.js b/ext/bg/js/search.js index 871c576b..266cccc8 100644 --- a/ext/bg/js/search.js +++ b/ext/bg/js/search.js @@ -72,12 +72,6 @@ class DisplaySearch extends Display { ]); } - static create() { - const instance = new DisplaySearch(); - instance.prepare(); - return instance; - } - async prepare() { try { await super.prepare(); @@ -376,5 +370,3 @@ class DisplaySearch extends Display { } } } - -DisplaySearch.instance = DisplaySearch.create(); diff --git a/ext/bg/search.html b/ext/bg/search.html index fe88e264..9a824776 100644 --- a/ext/bg/search.html +++ b/ext/bg/search.html @@ -94,6 +94,7 @@ - + +