diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-21 13:27:32 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-21 13:27:32 -0500 |
commit | a2175f2c293ef2de41a58acdd9adc202b0302d67 (patch) | |
tree | f3bf7d760a80402b00dd4debdf2af7ac9ece8254 /ext/fg/js/popup-proxy-host.js | |
parent | 7ae05840772c04f1263f851432e21bd5a313b320 (diff) |
Move PopupProxyHost initialization
Diffstat (limited to 'ext/fg/js/popup-proxy-host.js')
-rw-r--r-- | ext/fg/js/popup-proxy-host.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/ext/fg/js/popup-proxy-host.js b/ext/fg/js/popup-proxy-host.js index 9ff8a8c8..e13d6f05 100644 --- a/ext/fg/js/popup-proxy-host.js +++ b/ext/fg/js/popup-proxy-host.js @@ -27,12 +27,6 @@ class PopupProxyHost { // Public functions - static create() { - const popupProxyHost = new PopupProxyHost(); - popupProxyHost.prepare(); - return popupProxyHost; - } - async prepare() { this._frameIdPromise = apiFrameInformationGet(); const {frameId} = await this._frameIdPromise; @@ -143,5 +137,3 @@ class PopupProxyHost { return popup.parent === null || popup.parent.isVisibleSync(); } } - -PopupProxyHost.instance = PopupProxyHost.create(); |