diff options
Diffstat (limited to 'ext/fg/js/popup.js')
-rw-r--r-- | ext/fg/js/popup.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/fg/js/popup.js b/ext/fg/js/popup.js index f9305bcd..a856d773 100644 --- a/ext/fg/js/popup.js +++ b/ext/fg/js/popup.js @@ -22,10 +22,11 @@ */ class Popup { - constructor(id, depth, frameId) { + constructor(id, depth, frameId, ownerFrameId) { this._id = id; this._depth = depth; this._frameId = frameId; + this._ownerFrameId = ownerFrameId; this._parent = null; this._child = null; this._childrenSupported = true; @@ -382,6 +383,7 @@ class Popup { this._invokeApi('configure', { messageId, frameId: this._frameId, + ownerFrameId: this._ownerFrameId, popupId: this._id, optionsContext: this._optionsContext, childrenSupported: this._childrenSupported, |