diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-04-17 18:38:29 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-04-17 18:38:29 -0700 |
commit | 5bebf3ed2cff5c460afe6f0d3df56f26f12ae240 (patch) | |
tree | b1e4d30eac7ca150fb1a0e38287b7b488869644f /ext/bg/js/yomichan.js | |
parent | 52a8e2207c70573abd1e47cc8d019ba9e592a9dd (diff) |
Revert "Support switching between edict and enamdict"
This reverts commit f079db0471424a873f22315c7911571d467e97ad.
Diffstat (limited to 'ext/bg/js/yomichan.js')
-rw-r--r-- | ext/bg/js/yomichan.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/bg/js/yomichan.js b/ext/bg/js/yomichan.js index 719aaed8..a66c1244 100644 --- a/ext/bg/js/yomichan.js +++ b/ext/bg/js/yomichan.js @@ -39,8 +39,8 @@ class Yomichan { onMessage(request, sender, callback) { const {action, data} = request; const handlers = { - findKanji: ({text, dict}) => this.translator.onFindKanji(text, dict), - findTerm: ({text, dict}) => this.translator.findTerm(text, dict), + findKanji: ({text}) => this.translator.onFindKanji(text), + findTerm: ({text}) => this.translator.findTerm(text), getState: () => this.state, getOptions: () => this.options, renderText: ({data, template}) => Handlebars.templates[template](data) |