diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-15 21:48:29 -0500 | 
|---|---|---|
| committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-16 19:54:41 -0500 | 
| commit | 29734ea6e95ad0c3a7e159a424dd587dc4966fa5 (patch) | |
| tree | 5137dc83fe36d54d5f29079b027bf3c92c40e4e3 /ext/fg/js | |
| parent | 72ab6f1f454994442bd7bedc9fb35077f7a26327 (diff) | |
isVisible => isVisibleSync
Diffstat (limited to 'ext/fg/js')
| -rw-r--r-- | ext/fg/js/popup-proxy-host.js | 2 | ||||
| -rw-r--r-- | ext/fg/js/popup.js | 10 | 
2 files changed, 6 insertions, 6 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();      }  } diff --git a/ext/fg/js/popup.js b/ext/fg/js/popup.js index af380ff8..4b8da979 100644 --- a/ext/fg/js/popup.js +++ b/ext/fg/js/popup.js @@ -70,7 +70,7 @@ class Popup {      }      hide(changeFocus) { -        if (!this.isVisible()) { +        if (!this.isVisibleSync()) {              return;          } @@ -84,7 +84,7 @@ class Popup {      }      async isVisibleAsync() { -        return this.isVisible(); +        return this.isVisibleSync();      }      setVisibleOverride(visible) { @@ -93,7 +93,7 @@ class Popup {      }      async containsPoint(x, y) { -        for (let popup = this; popup !== null && popup.isVisible(); popup = popup._child) { +        for (let popup = this; popup !== null && popup.isVisibleSync(); popup = popup._child) {              const rect = popup._container.getBoundingClientRect();              if (x >= rect.left && y >= rect.top && x < rect.right && y < rect.bottom) {                  return true; @@ -135,7 +135,7 @@ class Popup {          parent._child = this;      } -    isVisible() { +    isVisibleSync() {          return this._isInjected && (this._visibleOverride !== null ? this._visibleOverride : this._visible);      } @@ -279,7 +279,7 @@ class Popup {      }      _updateVisibility() { -        this._container.style.setProperty('visibility', this.isVisible() ? 'visible' : 'hidden', 'important'); +        this._container.style.setProperty('visibility', this.isVisibleSync() ? 'visible' : 'hidden', 'important');      }      _focusParent() { |