From 7d7ff165ced305bc269b24aa0ce8664272d86fa6 Mon Sep 17 00:00:00 2001 From: siikamiika Date: Tue, 5 May 2020 00:13:43 +0300 Subject: Extract textSource text inside TextScanner (#500) * extract text inside TextScanner * clone textSource before text extraction --- ext/fg/js/frontend.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'ext/fg/js') diff --git a/ext/fg/js/frontend.js b/ext/fg/js/frontend.js index d979246d..b2cb0cd8 100644 --- a/ext/fg/js/frontend.js +++ b/ext/fg/js/frontend.js @@ -239,9 +239,7 @@ class Frontend { } async findTerms(textSource, optionsContext) { - this._textScanner.setTextSourceScanLength(textSource, this._options.scanning.length); - - const searchText = textSource.text(); + const searchText = this._textScanner.getTextSourceContent(textSource, this._options.scanning.length); if (searchText.length === 0) { return null; } const {definitions, length} = await apiTermsFind(searchText, {}, optionsContext); @@ -253,9 +251,7 @@ class Frontend { } async findKanji(textSource, optionsContext) { - this._textScanner.setTextSourceScanLength(textSource, 1); - - const searchText = textSource.text(); + const searchText = this._textScanner.getTextSourceContent(textSource, 1); if (searchText.length === 0) { return null; } const definitions = await apiKanjiFind(searchText, optionsContext); -- cgit v1.2.3