diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-10-12 14:38:16 -0400 | 
|---|---|---|
| committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-10-12 15:31:29 -0400 | 
| commit | 8a1637f6b31719969473f1b393d46721a2398f11 (patch) | |
| tree | ad99542a1be86c0b0118060bd4d7c5f751c503d4 | |
| parent | 194615ef21557236cd2b9ea390b4164a4d5338c5 (diff) | |
Remove .show popup proxy API since it's not used
| -rw-r--r-- | ext/fg/js/popup-proxy-host.js | 9 | ||||
| -rw-r--r-- | ext/fg/js/popup-proxy.js | 6 | 
2 files changed, 1 insertions, 14 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); diff --git a/ext/fg/js/popup-proxy.js b/ext/fg/js/popup-proxy.js index 22b95785..96fc8890 100644 --- a/ext/fg/js/popup-proxy.js +++ b/ext/fg/js/popup-proxy.js @@ -51,12 +51,6 @@ class PopupProxy {          return await this.invokeHostApi('setOptions', {id, options});      } -    async show(elementRect, options) { -        const id = await this.getPopupId(); -        elementRect = PopupProxy.DOMRectToJson(elementRect); -        return await this.invokeHostApi('show', {id, elementRect, options}); -    } -      async showOrphaned(elementRect, options) {          const id = await this.getPopupId();          elementRect = PopupProxy.DOMRectToJson(elementRect); |