diff options
Diffstat (limited to 'ext/fg/js/popup-proxy-host.js')
| -rw-r--r-- | ext/fg/js/popup-proxy-host.js | 9 | 
1 files changed, 1 insertions, 8 deletions
diff --git a/ext/fg/js/popup-proxy-host.js b/ext/fg/js/popup-proxy-host.js index 5edee8dd..c3acec7f 100644 --- a/ext/fg/js/popup-proxy-host.js +++ b/ext/fg/js/popup-proxy-host.js @@ -39,8 +39,7 @@ class PopupProxyHost {          this.apiReceiver = new FrontendApiReceiver(`popup-proxy-host#${frameId}`, {              createNestedPopup: ({parentId}) => this.createNestedPopup(parentId),              setOptions: ({id, options}) => this.setOptions(id, options), -            show: ({id, elementRect, options}) => this.show(id, elementRect, options), -            showOrphaned: ({id, elementRect, options}) => this.show(id, elementRect, options), +            showOrphaned: ({id, elementRect, options}) => this.showOrphaned(id, elementRect, options),              hide: ({id, changeFocus}) => this.hide(id, changeFocus),              setVisibleOverride: ({id, visible}) => this.setVisibleOverride(id, visible),              containsPoint: ({id, x, y}) => this.containsPoint(id, x, y), @@ -92,12 +91,6 @@ class PopupProxyHost {          return await popup.setOptions(options);      } -    async show(id, elementRect, options) { -        const popup = this.getPopup(id); -        elementRect = this.jsonRectToDOMRect(popup, elementRect); -        return await popup.show(elementRect, options); -    } -      async showOrphaned(id, elementRect, options) {          const popup = this.getPopup(id);          elementRect = this.jsonRectToDOMRect(popup, elementRect);  |