summaryrefslogtreecommitdiff
path: root/ext/fg/js/frontend.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-12-11 21:31:21 -0500
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-12-11 21:31:21 -0500
commitf287d686245371ee3ef8483d1027f06c30dc6a5e (patch)
tree8a61cff7b59826b3a42712ce4eb54dfec4184bbe /ext/fg/js/frontend.js
parent99867ebdd8ddc168abc3cc796a0c6a23701b2235 (diff)
Add showContentCompleted for improved semantic clarity
Diffstat (limited to 'ext/fg/js/frontend.js')
-rw-r--r--ext/fg/js/frontend.js12
1 files changed, 8 insertions, 4 deletions
diff --git a/ext/fg/js/frontend.js b/ext/fg/js/frontend.js
index 01f5c13d..54e78bf5 100644
--- a/ext/fg/js/frontend.js
+++ b/ext/fg/js/frontend.js
@@ -37,7 +37,7 @@ class Frontend extends TextScanner {
this.isPreparedPromiseResolve = null;
this.isPreparedPromise = new Promise((resolve) => { this.isPreparedPromiseResolve = resolve; });
- this.lastShowPromise = Promise.resolve();
+ this._lastShowPromise = Promise.resolve();
}
static create() {
@@ -68,7 +68,7 @@ class Frontend extends TextScanner {
async onResize() {
const textSource = this.textSourceCurrent;
if (textSource !== null && await this.popup.isVisibleAsync()) {
- this.lastShowPromise = this.popup.showContent(
+ this._lastShowPromise = this.popup.showContent(
textSource.getRect(),
textSource.getWritingMode()
);
@@ -124,7 +124,7 @@ class Frontend extends TextScanner {
} catch (e) {
if (window.yomichan_orphaned) {
if (textSource !== null && this.options.scanning.modifier !== 'none') {
- this.lastShowPromise = this.popup.showContent(
+ this._lastShowPromise = this.popup.showContent(
textSource.getRect(),
textSource.getWritingMode(),
'orphaned'
@@ -145,7 +145,7 @@ class Frontend extends TextScanner {
showContent(textSource, focus, definitions, type) {
const sentence = docSentenceExtract(textSource, this.options.anki.sentenceExt);
const url = window.location.href;
- this.lastShowPromise = this.popup.showContent(
+ this._lastShowPromise = this.popup.showContent(
textSource.getRect(),
textSource.getWritingMode(),
type,
@@ -153,6 +153,10 @@ class Frontend extends TextScanner {
);
}
+ showContentCompleted() {
+ return this._lastShowPromise;
+ }
+
async findTerms(textSource) {
this.setTextSourceScanLength(textSource, this.options.scanning.length);