diff options
Diffstat (limited to 'ext/bg/js/settings/main.js')
-rw-r--r-- | ext/bg/js/settings/main.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/bg/js/settings/main.js b/ext/bg/js/settings/main.js index db371d37..b29744ac 100644 --- a/ext/bg/js/settings/main.js +++ b/ext/bg/js/settings/main.js @@ -21,6 +21,7 @@ * AudioController * ClipboardPopupsController * DictionaryController + * DictionaryImportController * GenericSettingController * PopupPreviewController * ProfileController @@ -94,9 +95,12 @@ async function setupEnvironmentInfo() { const profileController = new ProfileController(settingsController); profileController.prepare(); - const dictionaryController = new DictionaryController(settingsController, storageController); + const dictionaryController = new DictionaryController(settingsController); dictionaryController.prepare(); + const dictionaryImportController = new DictionaryImportController(settingsController, storageController); + dictionaryImportController.prepare(); + const ankiController = new AnkiController(settingsController); ankiController.prepare(); |