diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-15 15:01:44 -0500 | 
|---|---|---|
| committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-22 14:43:06 -0500 | 
| commit | 1c828d205c7cb8fd095b70ee9cd70f14ac5b044d (patch) | |
| tree | a6086bdcaa43d06e6e7eccb07aab523c178bf46a /ext/bg/js | |
| parent | cc2e21cd866fd02120c593f6a5ad9b5840c0edbb (diff) | |
Remove unused dictRowsSort
Diffstat (limited to 'ext/bg/js')
| -rw-r--r-- | ext/bg/js/dictionary.js | 14 | 
1 files changed, 0 insertions, 14 deletions
| diff --git a/ext/bg/js/dictionary.js b/ext/bg/js/dictionary.js index d9a7a865..afdcc6b9 100644 --- a/ext/bg/js/dictionary.js +++ b/ext/bg/js/dictionary.js @@ -42,20 +42,6 @@ function dictConfigured(options) {      return false;  } -function dictRowsSort(rows, options) { -    return rows.sort((ra, rb) => { -        const pa = (options.dictionaries[ra.title] || {}).priority || 0; -        const pb = (options.dictionaries[rb.title] || {}).priority || 0; -        if (pa > pb) { -            return -1; -        } else if (pa < pb) { -            return 1; -        } else { -            return 0; -        } -    }); -} -  function dictTermsSort(definitions, dictionaries=null) {      return definitions.sort((v1, v2) => {          let i; |