diff options
Diffstat (limited to 'ext/fg/js/driver.js')
-rw-r--r-- | ext/fg/js/driver.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/fg/js/driver.js b/ext/fg/js/driver.js index 5de762ca..fddfbc29 100644 --- a/ext/fg/js/driver.js +++ b/ext/fg/js/driver.js @@ -154,7 +154,7 @@ window.driver = new class { const sentence = docSentenceExtract(textSource, this.options.anki.sentenceExt); const url = window.location.href; - this.popup.showNextTo(textSource.getRect()); + this.popup.showNextTo(textSource.getRect(), this.options); this.popup.showTermDefs(definitions, this.options, {sentence, url}); this.lastTextSource = textSource; @@ -177,7 +177,7 @@ window.driver = new class { const sentence = docSentenceExtract(textSource, this.options.anki.sentenceExt); const url = window.location.href; - this.popup.showNextTo(textSource.getRect()); + this.popup.showNextTo(textSource.getRect(), this.options); this.popup.showKanjiDefs(definitions, this.options, {sentence, url}); this.lastTextSource = textSource; @@ -204,7 +204,7 @@ window.driver = new class { handleError(error, textSource) { if (window.orphaned) { if (textSource && this.options.scanning.requireShift) { - this.popup.showNextTo(textSource.getRect()); + this.popup.showNextTo(textSource.getRect(), this.options); this.popup.showOrphaned(); } } else { |