diff --git a/ext/js/pages/settings/popup-preview-controller.js b/ext/js/pages/settings/popup-preview-controller.js index 170d56de..2a47d385 100644 --- a/ext/js/pages/settings/popup-preview-controller.js +++ b/ext/js/pages/settings/popup-preview-controller.js @@ -26,6 +26,8 @@ class PopupPreviewController { } async prepare() { + if (new URLSearchParams(location.search).get('popup-preview') === 'false') { return; } + this._frame = document.querySelector('#popup-preview-frame'); this._customCss = document.querySelector('#custom-popup-css'); this._customOuterCss = document.querySelector('#custom-popup-outer-css'); @@ -37,6 +39,8 @@ class PopupPreviewController { this._customOuterCss.addEventListener('settingChanged', this._onCustomOuterCssChange.bind(this), false); this._frame.addEventListener('load', this._onFrameLoad.bind(this), false); this._settingsController.on('optionsContextChanged', this._onOptionsContextChange.bind(this)); + + this._frame.src = '/popup-preview.html'; } // Private diff --git a/ext/settings.html b/ext/settings.html index a4619786..1c3dd065 100644 --- a/ext/settings.html +++ b/ext/settings.html @@ -1980,7 +1980,7 @@
- +