diff options
Diffstat (limited to 'ext/bg/js')
| -rw-r--r-- | ext/bg/js/search-main.js (renamed from ext/bg/js/search-frontend.js) | 4 | ||||
| -rw-r--r-- | ext/bg/js/search.js | 8 | 
2 files changed, 4 insertions, 8 deletions
| diff --git a/ext/bg/js/search-frontend.js b/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(); |