diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-03-14 13:48:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-14 13:48:50 -0400 |
commit | 1cacbb6202b823d318fabdc0ef5a498923d9c95a (patch) | |
tree | 74db749fa2b8e577d37de868a67a684908bb4be0 /ext/bg/js/settings/dictionaries.js | |
parent | f7bbcb6df403ca565b6dcf3ab468967f830b527d (diff) | |
parent | adbdca6a8bbb68ea046fe55b070cddb501ce40aa (diff) |
Merge pull request #409 from toasted-nutbread/update-global-declaration-format
Update global declaration format
Diffstat (limited to 'ext/bg/js/settings/dictionaries.js')
-rw-r--r-- | ext/bg/js/settings/dictionaries.js | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/ext/bg/js/settings/dictionaries.js b/ext/bg/js/settings/dictionaries.js index b9551073..5e59cc3d 100644 --- a/ext/bg/js/settings/dictionaries.js +++ b/ext/bg/js/settings/dictionaries.js @@ -16,11 +16,23 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -/*global getOptionsContext, getOptionsMutable, getOptionsFullMutable, settingsSaveOptions, apiOptionsGetFull, apiOptionsGet -utilBackgroundIsolate, utilDatabaseDeleteDictionary, utilDatabaseGetDictionaryInfo, utilDatabaseGetDictionaryCounts -utilDatabasePurge, utilDatabaseImport -storageUpdateStats, storageEstimate -PageExitPrevention*/ +/* global + * PageExitPrevention + * apiOptionsGet + * apiOptionsGetFull + * getOptionsContext + * getOptionsFullMutable + * getOptionsMutable + * settingsSaveOptions + * storageEstimate + * storageUpdateStats + * utilBackgroundIsolate + * utilDatabaseDeleteDictionary + * utilDatabaseGetDictionaryCounts + * utilDatabaseGetDictionaryInfo + * utilDatabaseImport + * utilDatabasePurge + */ let dictionaryUI = null; |