diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-08-16 16:16:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-16 16:16:18 -0400 |
commit | c26c4ae0cb2e8516d79e827e7f76a5974fffdae4 (patch) | |
tree | f4762afe8ac9d5ffc7ada531d8b788274d683ab7 /ext/fg/js/content-script-main.js | |
parent | 90d694429029d804740d2af384ad903be48b040e (diff) |
Frontend initialization refactor (#737)
* Fix incorrect popup depth reassignment
* Rename variable
* Rename property
* Use explicit parameter values
* Refactor setupNestedPopups
* Refactor frontend initialization
Diffstat (limited to 'ext/fg/js/content-script-main.js')
-rw-r--r-- | ext/fg/js/content-script-main.js | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/ext/fg/js/content-script-main.js b/ext/fg/js/content-script-main.js index 4db41cb9..84e78392 100644 --- a/ext/fg/js/content-script-main.js +++ b/ext/fg/js/content-script-main.js @@ -34,11 +34,16 @@ const popupFactory = new PopupFactory(frameId); popupFactory.prepare(); - const frontend = new Frontend( + const frontend = new Frontend({ frameId, popupFactory, - {} - ); + depth: 0, + parentPopupId: null, + parentFrameId: null, + useProxyPopup: false, + isSearchPage: false, + allowRootFramePopupProxy: true + }); await frontend.prepare(); yomichan.ready(); |