aboutsummaryrefslogtreecommitdiff
path: root/ext/fg/js/frontend.js
diff options
context:
space:
mode:
authorAlex Yatskov <alex@foosoft.net>2017-07-22 23:19:38 -0700
committerAlex Yatskov <alex@foosoft.net>2017-07-22 23:19:38 -0700
commitedf1c0ff6d9eadd17c98f00ef027c27d1b89a8ee (patch)
treedf8a3caa3f0d46363533d66d6f01b06f6bcebb9c /ext/fg/js/frontend.js
parent611b4420af9aa5c8ad6287996b73ae8fd2eb2f4b (diff)
cleanup
Diffstat (limited to 'ext/fg/js/frontend.js')
-rw-r--r--ext/fg/js/frontend.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/fg/js/frontend.js b/ext/fg/js/frontend.js
index 8b4c182c..9974d878 100644
--- a/ext/fg/js/frontend.js
+++ b/ext/fg/js/frontend.js
@@ -28,7 +28,7 @@ window.yomichanFrontend = new class {
this.pendingLookup = false;
this.options = null;
- bgOptionsGet().then(options => {
+ apiOptionsGet().then(options => {
this.options = options;
window.addEventListener('mouseover', this.onMouseOver.bind(this));
window.addEventListener('mousedown', this.onMouseDown.bind(this));
@@ -175,7 +175,7 @@ window.yomichanFrontend = new class {
searchTerms(textSource) {
textSource.setEndOffset(this.options.scanning.length);
- return bgTermsFind(textSource.text()).then(({definitions, length}) => {
+ return apiTermsFind(textSource.text()).then(({definitions, length}) => {
if (definitions.length === 0) {
return false;
} else {
@@ -203,7 +203,7 @@ window.yomichanFrontend = new class {
searchKanji(textSource) {
textSource.setEndOffset(1);
- return bgKanjiFind(textSource.text()).then(definitions => {
+ return apiKanjiFind(textSource.text()).then(definitions => {
if (definitions.length === 0) {
return false;
} else {