diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-05-07 13:43:32 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-05-07 13:43:32 -0700 |
commit | 9b9985bd4ba810d5a4e985100c68c544df9bccaf (patch) | |
tree | 7d5ac749aa12a1a113a74731b33d81cbd960d91c /ext/bg/js/yomichan.js | |
parent | 8c1ebe6bcbc3511231c60133cd54722ae97e43ee (diff) |
Improvements
Diffstat (limited to 'ext/bg/js/yomichan.js')
-rw-r--r-- | ext/bg/js/yomichan.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/yomichan.js b/ext/bg/js/yomichan.js index f1cda178..abbcefe4 100644 --- a/ext/bg/js/yomichan.js +++ b/ext/bg/js/yomichan.js @@ -51,7 +51,7 @@ class Yomichan { onMessage(request, sender, callback) { const {action, params} = request, handlers = { - canAddNotes: (definitions) => this.ankiInvoke('canAddNotes', definitions, 'notes', callback), + canAddNotes: ({definitions, modes}) => this.ankiInvoke('canAddNotes', {definitions: definitions, modes: modes}, 'notes', callback), findKanji: (text) => callback(this.translator.findKanji(text)), findTerm: (text) => callback(this.translator.findTerm(text)), getOptions: () => callback(this.options), |