summaryrefslogtreecommitdiff
path: root/ext/fg/js/popup-proxy-host.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-12-15 21:48:29 -0500
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-12-16 19:54:41 -0500
commit29734ea6e95ad0c3a7e159a424dd587dc4966fa5 (patch)
tree5137dc83fe36d54d5f29079b027bf3c92c40e4e3 /ext/fg/js/popup-proxy-host.js
parent72ab6f1f454994442bd7bedc9fb35077f7a26327 (diff)
isVisible => isVisibleSync
Diffstat (limited to 'ext/fg/js/popup-proxy-host.js')
-rw-r--r--ext/fg/js/popup-proxy-host.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fg/js/popup-proxy-host.js b/ext/fg/js/popup-proxy-host.js
index cb385cc2..2f06bb67 100644
--- a/ext/fg/js/popup-proxy-host.js
+++ b/ext/fg/js/popup-proxy-host.js
@@ -140,7 +140,7 @@ class PopupProxyHost {
}
static _popupCanShow(popup) {
- return popup.parent === null || popup.parent.isVisible();
+ return popup.parent === null || popup.parent.isVisibleSync();
}
}