diff options
author | Alex Yatskov <alex@foosoft.net> | 2017-01-15 22:17:49 -0800 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2017-01-15 22:17:49 -0800 |
commit | e8840465f07f09fbb9acb6071b94489f02ecd87f (patch) | |
tree | a0a4a8bd5ba2783b730e104bbbadd8c1d9975eb7 /ext/bg/js/yomichan.js | |
parent | eae885b9aae58c587e12ec3992b751d79dfc7bd2 (diff) |
WIP
Diffstat (limited to 'ext/bg/js/yomichan.js')
-rw-r--r-- | ext/bg/js/yomichan.js | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/ext/bg/js/yomichan.js b/ext/bg/js/yomichan.js index 67b1606c..27077f57 100644 --- a/ext/bg/js/yomichan.js +++ b/ext/bg/js/yomichan.js @@ -106,15 +106,11 @@ class Yomichan { tabInvokeAll(action, params) { chrome.tabs.query({}, tabs => { for (const tab of tabs) { - this.tabInvoke(tab.id, action, params); + chrome.tabs.sendMessage(tab.id, {action, params}, () => null); } }); } - tabInvoke(tabId, action, params) { - chrome.tabs.sendMessage(tabId, {action, params}, () => null); - } - formatNote(definition, mode) { const note = {fields: {}, tags: this.options.anki.tags}; @@ -174,7 +170,7 @@ class Yomichan { ); } - api_findTerm({text, callback}) { + api_findTerms({text, callback}) { const dictionaries = []; for (const title in this.options.dictionaries) { if (this.options.dictionaries[title].enableTerms) { @@ -183,7 +179,7 @@ class Yomichan { } promiseCallback( - this.translator.findTerm( + this.translator.findTerms( text, dictionaries, this.options.general.softKatakana @@ -192,7 +188,7 @@ class Yomichan { ); } - api_findTermGrouped({text, callback}) { + api_findTermsGrouped({text, callback}) { const dictionaries = []; for (const title in this.options.dictionaries) { if (this.options.dictionaries[title].enableTerms) { @@ -201,7 +197,7 @@ class Yomichan { } promiseCallback( - this.translator.findTermGrouped( + this.translator.findTermsGrouped( text, dictionaries, this.options.general.softKatakana |