diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-10-17 18:39:12 -0400 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-10-17 18:40:43 -0400 |
commit | 8f918c63dcf82bfcdba47100194b34e4be2dd531 (patch) | |
tree | 88bc1d06864ad0f0db8756c0f5bd3c03b456fff4 /ext/fg/js/popup.js | |
parent | 598cd32946c8e10e5aa3fcec26e3fc40af44bddf (diff) |
Reposition popup on window resize rather than clear the search
Fixes #107
Diffstat (limited to 'ext/fg/js/popup.js')
-rw-r--r-- | ext/fg/js/popup.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/fg/js/popup.js b/ext/fg/js/popup.js index 6c24c0ce..b5eb9fe2 100644 --- a/ext/fg/js/popup.js +++ b/ext/fg/js/popup.js @@ -239,6 +239,10 @@ class Popup { } } + async isVisibleAsync() { + return this.isVisible(); + } + isVisible() { return this.isInjected && (this.visibleOverride !== null ? this.visibleOverride : this.visible); } |