diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-02-14 15:53:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-14 15:53:35 -0500 |
commit | 286534e648af350d24fbf3c7892a7ec81aaeb4bd (patch) | |
tree | 89d88e961c5a0a6f508c66789e30b9ba4a968e73 /ext/js/settings/dictionary-controller.js | |
parent | efe8140f103179f50b610f182148b9427af99010 (diff) |
Move api to yomichan object (#1392)
* Move cross frame API from API to Yomichan
* Add API instance to Yomichan
* Move api global to yomichan.api
* Pass yomichan to API
* Remove IIFE
Diffstat (limited to 'ext/js/settings/dictionary-controller.js')
-rw-r--r-- | ext/js/settings/dictionary-controller.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ext/js/settings/dictionary-controller.js b/ext/js/settings/dictionary-controller.js index ea9f7503..78173202 100644 --- a/ext/js/settings/dictionary-controller.js +++ b/ext/js/settings/dictionary-controller.js @@ -18,7 +18,6 @@ /* global * DictionaryDatabase * ObjectPropertyAccessor - * api */ class DictionaryEntry { @@ -362,7 +361,7 @@ class DictionaryController { const token = this._databaseStateToken; const dictionaryTitles = this._dictionaries.map(({title}) => title); - const {counts, total} = await api.getDictionaryCounts(dictionaryTitles, true); + const {counts, total} = await yomichan.api.getDictionaryCounts(dictionaryTitles, true); if (this._databaseStateToken !== token) { return; } for (let i = 0, ii = Math.min(counts.length, this._dictionaryEntries.length); i < ii; ++i) { @@ -499,7 +498,7 @@ class DictionaryController { const dictionaryDatabase = await this._getPreparedDictionaryDatabase(); try { await dictionaryDatabase.deleteDictionary(dictionaryTitle, {rate: 1000}, onProgress); - api.triggerDatabaseUpdated('dictionary', 'delete'); + yomichan.api.triggerDatabaseUpdated('dictionary', 'delete'); } finally { dictionaryDatabase.close(); } |