diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-16 12:23:20 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-16 12:23:20 -0500 |
commit | b5d32c73e657c882ba6f70b79d4a5e214684f563 (patch) | |
tree | 64e63413e8307a43ef65b318dec88a3a76e4cd3f /ext/fg/js/frontend.js | |
parent | 42f1c2463c8051d9cbbcacd43f06922c2f11ec71 (diff) |
Simplify process to wait for iframe prepare completion
Diffstat (limited to 'ext/fg/js/frontend.js')
-rw-r--r-- | ext/fg/js/frontend.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/fg/js/frontend.js b/ext/fg/js/frontend.js index c3050514..67045241 100644 --- a/ext/fg/js/frontend.js +++ b/ext/fg/js/frontend.js @@ -244,6 +244,5 @@ Frontend._windowMessageHandlers = new Map([ ]); Frontend._runtimeMessageHandlers = new Map([ - ['popupSetVisibleOverride', (self, {visible}) => { self.popup.setVisibleOverride(visible); }], - ['popupSetDisplayInitialized', (self) => { self.popup.setDisplayInitialized(); }] + ['popupSetVisibleOverride', (self, {visible}) => { self.popup.setVisibleOverride(visible); }] ]); |