diff options
Diffstat (limited to 'ext/js/display/display-anki.js')
-rw-r--r-- | ext/js/display/display-anki.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/js/display/display-anki.js b/ext/js/display/display-anki.js index d17a2f0f..216e3108 100644 --- a/ext/js/display/display-anki.js +++ b/ext/js/display/display-anki.js @@ -216,8 +216,8 @@ class DisplayAnki { if (typeof url !== 'string') { url = window.location.href; } - const {query, fullQuery} = this._display; - sentence = this._getValidSentenceData(sentence, query); + const {query, fullQuery, queryOffset} = this._display; + sentence = this._getValidSentenceData(sentence, fullQuery, queryOffset); return { url, sentence, @@ -565,11 +565,11 @@ class DisplayAnki { return isTerms ? ['term-kanji', 'term-kana'] : ['kanji']; } - _getValidSentenceData(sentence, fallback) { + _getValidSentenceData(sentence, fallback, fallbackOffset) { let {text, offset} = (isObject(sentence) ? sentence : {}); if (typeof text !== 'string') { text = fallback; - offset = 0; + offset = fallbackOffset; } else { if (typeof offset !== 'number') { offset = 0; } } |