diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-04-17 18:13:20 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-04-17 18:13:20 -0700 |
commit | f079db0471424a873f22315c7911571d467e97ad (patch) | |
tree | 96860218da185c478e269a7c12e6210ccba7ee3f /ext/bg/js/yomichan.js | |
parent | bcd34149ab120f4bd0b823fbd6ae4efadfb02e90 (diff) |
Support switching between edict and enamdict
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 a66c1244..719aaed8 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}) => this.translator.onFindKanji(text), - findTerm: ({text}) => this.translator.findTerm(text), + findKanji: ({text, dict}) => this.translator.onFindKanji(text, dict), + findTerm: ({text, dict}) => this.translator.findTerm(text, dict), getState: () => this.state, getOptions: () => this.options, renderText: ({data, template}) => Handlebars.templates[template](data) |