summaryrefslogtreecommitdiff
path: root/ext/fg/js/popup-proxy.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-12-15 21:49:20 -0500
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-12-16 19:54:41 -0500
commit0fb2357ec7388198134aed021a7014c0c0dda5c9 (patch)
treec5da450582f5b9b3d73775a9a22045fff5db758f /ext/fg/js/popup-proxy.js
parent29734ea6e95ad0c3a7e159a424dd587dc4966fa5 (diff)
isVisibleAsync => isVisible
Diffstat (limited to 'ext/fg/js/popup-proxy.js')
-rw-r--r--ext/fg/js/popup-proxy.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/fg/js/popup-proxy.js b/ext/fg/js/popup-proxy.js
index d52cc26d..e4081e90 100644
--- a/ext/fg/js/popup-proxy.js
+++ b/ext/fg/js/popup-proxy.js
@@ -60,9 +60,9 @@ class PopupProxy {
return await this._invokeHostApi('hide', {id: this._id, changeFocus});
}
- async isVisibleAsync() {
+ async isVisible() {
const id = await this._getPopupId();
- return await this._invokeHostApi('isVisibleAsync', {id});
+ return await this._invokeHostApi('isVisible', {id});
}
async setVisibleOverride(visible) {