diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-05-01 17:30:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-01 17:30:17 -0400 |
commit | 46f60619d58c355afd067f391c3f7dec5f63577a (patch) | |
tree | 150004704755c79a2d97f8eadce8139f8dd0043b /ext/js/display | |
parent | c514bbc4fbe39f611d7d9cfd3a48681bacbaf559 (diff) |
Display fixes (#1648)
* Fix incorrect tabId/frameId being used
* Only enable nested popups if the tabId is valid
* Remove unused APIs
Diffstat (limited to 'ext/js/display')
-rw-r--r-- | ext/js/display/display.js | 20 | ||||
-rw-r--r-- | ext/js/display/search-display-controller.js | 4 |
2 files changed, 10 insertions, 14 deletions
diff --git a/ext/js/display/display.js b/ext/js/display/display.js index 720e1de5..6895ea74 100644 --- a/ext/js/display/display.js +++ b/ext/js/display/display.js @@ -194,14 +194,6 @@ class Display extends EventDispatcher { return this._progressIndicatorVisible; } - get tabId() { - return this._tabId; - } - - get frameId() { - return this._frameId; - } - get parentPopupId() { return this._parentPopupId; } @@ -1635,10 +1627,14 @@ class Display extends EventDispatcher { async _updateNestedFrontend(options) { const isSearchPage = (this._pageType === 'search'); - const isEnabled = this._childrenSupported && ( - (isSearchPage) ? - (options.scanning.enableOnSearchPage) : - (this._depth < options.scanning.popupNestingMaxDepth) + const isEnabled = ( + this._childrenSupported && + typeof this._tabId === 'number' && + ( + (isSearchPage) ? + (options.scanning.enableOnSearchPage) : + (this._depth < options.scanning.popupNestingMaxDepth) + ) ); if (this._frontend === null) { diff --git a/ext/js/display/search-display-controller.js b/ext/js/display/search-display-controller.js index e60de796..d7d79d54 100644 --- a/ext/js/display/search-display-controller.js +++ b/ext/js/display/search-display-controller.js @@ -368,8 +368,8 @@ class SearchDisplayController { dictionaryEntries: null, animate, contentOrigin: { - tabId: this.tabId, - frameId: this.frameId + tabId: this._tabId, + frameId: this._frameId } } }; |