diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-11-22 11:19:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-22 11:19:21 -0500 |
commit | 7234cce4ae528db3e6177da1dbd499abd3c83837 (patch) | |
tree | ee70e6d7819a6de2d549e44c6319705117545f1c /ext/fg/js/popup.js | |
parent | 7b6a4c4e36ce65af376cd87f5f9e7c657ef2a12c (diff) |
Refactor nested popup/frontend setup (#1052)
Diffstat (limited to 'ext/fg/js/popup.js')
-rw-r--r-- | ext/fg/js/popup.js | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/ext/fg/js/popup.js b/ext/fg/js/popup.js index 826457c1..2feb220d 100644 --- a/ext/fg/js/popup.js +++ b/ext/fg/js/popup.js @@ -255,12 +255,13 @@ class Popup extends EventDispatcher { // Configure await this._invokeSafe('configure', { - frameId: this._frameId, + depth: this._depth, + parentPopupId: this._id, + parentFrameId: this._frameId, ownerFrameId: this._ownerFrameId, - popupId: this._id, - optionsContext: this._optionsContext, childrenSupported: this._childrenSupported, - scale: this._contentScale + scale: this._contentScale, + optionsContext: this._optionsContext }); } |