diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-10-18 18:26:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-18 18:26:44 -0400 |
commit | 8bf42fa69ec4921710e4a3116cac2f1fa983244f (patch) | |
tree | cce26cca3d5c29b2b61d2fde07dc320df44d7b0b /ext/bg/js/settings/main.js | |
parent | 3e3c080a43b1685b9c6b9cb033eab48a85c7db58 (diff) |
Dictionary controller updates (#939)
* Check if element exists
* Add delete function
* Add support for deleting via popup menu
* Update how count visibility is updated
* Update dictionary deletion progress updates
* Update storage stats after dictionary deletion
Diffstat (limited to 'ext/bg/js/settings/main.js')
-rw-r--r-- | ext/bg/js/settings/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/settings/main.js b/ext/bg/js/settings/main.js index b7d7879c..635549f8 100644 --- a/ext/bg/js/settings/main.js +++ b/ext/bg/js/settings/main.js @@ -83,7 +83,7 @@ async function setupEnvironmentInfo() { const profileController = new ProfileController(settingsController, modalController); profileController.prepare(); - const dictionaryController = new DictionaryController(settingsController, modalController); + const dictionaryController = new DictionaryController(settingsController, modalController, storageController); dictionaryController.prepare(); const dictionaryImportController = new DictionaryImportController(settingsController, modalController, storageController); |