diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-08-09 13:21:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-09 13:21:14 -0400 |
commit | 480e0e15e3109165d077c18985893d7cca79959e (patch) | |
tree | a4f4712ba27796b72136fc19b982b6e864074d17 /ext/bg/js/dictionary.js | |
parent | 427cf99b9fb08ac8066fdbcefe5f9069e87aa972 (diff) |
Translator refactor (#720)
* Move simple find sort into translator.js
* Remove unused
* Use direct reference to database
* Make field private
* Remove statics
* Convert functions to private
* Organize by public/private
Diffstat (limited to 'ext/bg/js/dictionary.js')
-rw-r--r-- | ext/bg/js/dictionary.js | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/ext/bg/js/dictionary.js b/ext/bg/js/dictionary.js index 15cc7615..2ad6578a 100644 --- a/ext/bg/js/dictionary.js +++ b/ext/bg/js/dictionary.js @@ -24,16 +24,6 @@ function dictEnabledSet(options) { return enabledDictionaryMap; } -function dictConfigured(options) { - for (const {enabled} of Object.values(options.dictionaries)) { - if (enabled) { - return true; - } - } - - return false; -} - function dictTermsSort(definitions, dictionaries=null) { return definitions.sort((v1, v2) => { let i; |