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/fg/js/api.js | |
parent | 52a8e2207c70573abd1e47cc8d019ba9e592a9dd (diff) |
Revert "Support switching between edict and enamdict"
This reverts commit f079db0471424a873f22315c7911571d467e97ad.
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 7997a73f..c65b1702 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, dict, callback) { - sendMessage('findTerm', {text: text, dict: dict}, callback); +function findTerm(text, callback) { + sendMessage('findTerm', {text: text}, callback); } function findKanji(text, callback) { |