diff options
Diffstat (limited to 'ext/fg/js/api.js')
-rw-r--r-- | ext/fg/js/api.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/fg/js/api.js b/ext/fg/js/api.js index c65b1702..7997a73f 100644 --- a/ext/fg/js/api.js +++ b/ext/fg/js/api.js @@ -21,8 +21,8 @@ function sendMessage(action, data, callback) { chrome.runtime.sendMessage({action: action, data: data}, callback); } -function findTerm(text, callback) { - sendMessage('findTerm', {text: text}, callback); +function findTerm(text, dict, callback) { + sendMessage('findTerm', {text: text, dict: dict}, callback); } function findKanji(text, callback) { |