summaryrefslogtreecommitdiff
path: root/ext/bg/js/backend.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-12-09 21:13:03 -0500
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-12-13 23:11:56 -0500
commit5cceba15e2db85f77dd80b24f1ad25b18775df94 (patch)
treea14a0ae142292f71e19068b734aa163b0e08a6a5 /ext/bg/js/backend.js
parent8dff73679e909dab8f325cc9458cf5c40c9be485 (diff)
Move apiKanjiFind implementation into Backend
Diffstat (limited to 'ext/bg/js/backend.js')
-rw-r--r--ext/bg/js/backend.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js
index 5753e16e..0cac68f8 100644
--- a/ext/bg/js/backend.js
+++ b/ext/bg/js/backend.js
@@ -240,8 +240,11 @@ class Backend {
this.onOptionsUpdated(source);
}
- _onApiKanjiFind({text, optionsContext}) {
- return apiKanjiFind(text, optionsContext);
+ async _onApiKanjiFind({text, optionsContext}) {
+ const options = await this.getOptions(optionsContext);
+ const definitions = await this.translator.findKanji(text, options);
+ definitions.splice(options.general.maxResults);
+ return definitions;
}
_onApiTermsFind({text, details, optionsContext}) {