diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-03-02 20:27:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-02 20:27:51 -0500 |
commit | 4208595293a18c2cd95064caf77db786c2902ac8 (patch) | |
tree | bff87aa2eb501ad5cd11bdf70b2048edb662ffa2 /ext/js/pages/welcome-main.js | |
parent | 571b865ae5207acb8e58a5ee38e4ed900194f7fb (diff) |
Persistent storage controller (#1478)
* Add PersistentStorageController
* Update DictionaryController
* Update DictionaryImportController
* Update when storage stats are updated
Diffstat (limited to 'ext/js/pages/welcome-main.js')
-rw-r--r-- | ext/js/pages/welcome-main.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/js/pages/welcome-main.js b/ext/js/pages/welcome-main.js index 27d0af6a..90067282 100644 --- a/ext/js/pages/welcome-main.js +++ b/ext/js/pages/welcome-main.js @@ -62,10 +62,10 @@ async function setupGenericSettingsController(genericSettingController) { const settingsController = new SettingsController(optionsFull.profileCurrent); settingsController.prepare(); - const dictionaryController = new DictionaryController(settingsController, modalController, null, statusFooter); + const dictionaryController = new DictionaryController(settingsController, modalController, statusFooter); dictionaryController.prepare(); - const dictionaryImportController = new DictionaryImportController(settingsController, modalController, null, statusFooter); + const dictionaryImportController = new DictionaryImportController(settingsController, modalController, statusFooter); dictionaryImportController.prepare(); const genericSettingController = new GenericSettingController(settingsController); |