diff options
Diffstat (limited to 'ext/fg/js/frontend.js')
| -rw-r--r-- | ext/fg/js/frontend.js | 9 | 
1 files changed, 7 insertions, 2 deletions
diff --git a/ext/fg/js/frontend.js b/ext/fg/js/frontend.js index 0c18fb2a..88038cd9 100644 --- a/ext/fg/js/frontend.js +++ b/ext/fg/js/frontend.js @@ -347,7 +347,13 @@ class Frontend {      }      _ignoreElements() { -        return this._popup === null || this._popup.isProxy() ? [] : [this._popup.getContainer()]; +        if (this._popup !== null) { +            const container = this._popup.container; +            if (container !== null) { +                return [container]; +            } +        } +        return [];      }      async _ignorePoint(x, y) { @@ -526,7 +532,6 @@ class Frontend {      _broadcastRootPopupInformation() {          if (              this._popup !== null && -            !this._popup.isProxy() &&              this._depth === 0 &&              this._frameId === 0          ) {  |