diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-07-10 22:13:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-10 22:13:11 -0400 |
commit | 964f011409e824da52510c7de16a1c64ebae1787 (patch) | |
tree | 097d66387d3e3dabba591c8809f73ac33ca25e62 /ext/fg/js/frontend.js | |
parent | 59c224d99d7c871b7864da5cd09ec60dc729e3d9 (diff) |
Various updates to FrameOffsetForwarder (#657)
* Remove bindings
* Fast exit if same window
* Simplify selector
* Rename functions, reuse _getFrameOffsetParent
* Update message style
* Send reply message to a specific frame
Diffstat (limited to 'ext/fg/js/frontend.js')
-rw-r--r-- | ext/fg/js/frontend.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fg/js/frontend.js b/ext/fg/js/frontend.js index 67dbcf4b..1618fa12 100644 --- a/ext/fg/js/frontend.js +++ b/ext/fg/js/frontend.js @@ -56,7 +56,7 @@ class Frontend { this._isSearchPage = isSearchPage; this._depth = depth; this._frameId = frameId; - this._frameOffsetForwarder = new FrameOffsetForwarder(); + this._frameOffsetForwarder = new FrameOffsetForwarder(frameId); this._popupFactory = popupFactory; this._allowRootFramePopupProxy = allowRootFramePopupProxy; this._popupCache = new Map(); |