diff options
Diffstat (limited to 'ext/bg/js/search-main.js')
| -rw-r--r-- | ext/bg/js/search-main.js | 13 | 
1 files changed, 10 insertions, 3 deletions
| diff --git a/ext/bg/js/search-main.js b/ext/bg/js/search-main.js index f6abdfc8..c7ec595a 100644 --- a/ext/bg/js/search-main.js +++ b/ext/bg/js/search-main.js @@ -16,10 +16,11 @@   */  /* global - * DisplaySearch + * Display   * DocumentFocusController   * HotkeyHandler   * JapaneseUtil + * SearchDisplayController   * api   * wanakana   */ @@ -39,10 +40,16 @@          const hotkeyHandler = new HotkeyHandler();          hotkeyHandler.prepare(); -        const displaySearch = new DisplaySearch(tabId, frameId, japaneseUtil, documentFocusController, hotkeyHandler); -        await displaySearch.prepare(); +        const display = new Display(tabId, frameId, 'search', japaneseUtil, documentFocusController, hotkeyHandler); +        await display.prepare(); + +        const searchDisplayController = new SearchDisplayController(tabId, frameId, display, japaneseUtil); +        await searchDisplayController.prepare(); + +        display.initializeState();          document.documentElement.dataset.loaded = 'true'; +          yomichan.ready();      } catch (e) {          yomichan.logError(e); |