diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-16 21:49:28 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-16 21:49:28 -0500 |
commit | ae4ee9ddee0b791c1039595250db6106e66709fa (patch) | |
tree | 2da9c4e17b77ce0bf2ba8338e3fe301636667ffb /ext | |
parent | e173a71ba631533a2a0a64ffe4d8883d7300802e (diff) |
Fix error handling on style injection
Diffstat (limited to 'ext')
-rw-r--r-- | ext/fg/js/popup.js | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/ext/fg/js/popup.js b/ext/fg/js/popup.js index dc538b02..59c46ab8 100644 --- a/ext/fg/js/popup.js +++ b/ext/fg/js/popup.js @@ -219,15 +219,24 @@ class Popup { }); this._observeFullscreen(true); this._onFullscreenChanged(); - try { - Popup._injectStylesheet('yomichan-popup-outer-stylesheet', 'file', '/fg/css/client.css', true); - this.setCustomOuterCss(this._options.general.customPopupOuterCss, true); - } catch (e) { - // NOP - } + this._injectStyles(); }); } + async _injectStyles() { + try { + await Popup._injectStylesheet('yomichan-popup-outer-stylesheet', 'file', '/fg/css/client.css', true); + } catch (e) { + // NOP + } + + try { + await this.setCustomOuterCss(this._options.general.customPopupOuterCss, true); + } catch (e) { + // NOP + } + } + _observeFullscreen(observe) { if (!observe) { this._fullscreenEventListeners.removeAllEventListeners(); |