diff options
author | Alex Yatskov <alex@foosoft.net> | 2017-05-23 22:51:48 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2017-05-23 22:51:48 -0700 |
commit | c0f74bbc8f6e8dde4f8e254d3f4b260b4209daaa (patch) | |
tree | 8bf5c39cdb69500b1c5dd25ea438232a789eb98e /ext/fg/js/driver.js | |
parent | 5de9ac17122002fa8727fd089679394f54af442f (diff) |
smarter imposter hiding, version bump1.1.18
Diffstat (limited to 'ext/fg/js/driver.js')
-rw-r--r-- | ext/fg/js/driver.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/fg/js/driver.js b/ext/fg/js/driver.js index 98c50a02..e11b5014 100644 --- a/ext/fg/js/driver.js +++ b/ext/fg/js/driver.js @@ -160,6 +160,7 @@ window.driver = new class { }).catch(error => { this.handleError(error, textSource); }).then(() => { + docImposterDestroy(); this.pendingLookup = false; }); } @@ -169,7 +170,6 @@ window.driver = new class { return bgTermsFind(textSource.text()).then(({definitions, length}) => { if (definitions.length === 0) { - docImposterDestroy(); return false; } else { textSource.setEndOffset(length); @@ -188,7 +188,6 @@ window.driver = new class { textSource.select(); } - docImposterDestroy(); return true; } }); |