aboutsummaryrefslogtreecommitdiff
path: root/ext/bg/js/settings.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-10-12 17:21:36 -0400
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-10-12 19:00:24 -0400
commit1da60aae2dcd08dd139abf14ca145510e136ee53 (patch)
treeca6302f39e30b4da31f60037ca20bf8e25f694d2 /ext/bg/js/settings.js
parent883226b0451350a0c01841e6c9a192bbb76dd8b6 (diff)
Update live preview custom CSS on input event
Diffstat (limited to 'ext/bg/js/settings.js')
-rw-r--r--ext/bg/js/settings.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/bg/js/settings.js b/ext/bg/js/settings.js
index f09b35d9..b98754ab 100644
--- a/ext/bg/js/settings.js
+++ b/ext/bg/js/settings.js
@@ -280,6 +280,7 @@ function showAppearancePreview() {
const buttonContainer = $('#settings-popup-preview-button-container');
const settings = $('#settings-popup-preview-settings');
const text = $('#settings-popup-preview-text');
+ const customCss = $('#custom-popup-css');
const frame = document.createElement('iframe');
frame.src = '/bg/settings-popup-preview.html';
@@ -292,6 +293,11 @@ function showAppearancePreview() {
const params = {text: text.val()};
frame.contentWindow.postMessage({action, params}, '*');
});
+ customCss.on('input', () => {
+ const action = 'setCustomCss';
+ const params = {css: customCss.val()};
+ frame.contentWindow.postMessage({action, params}, '*');
+ });
container.append(frame);
buttonContainer.remove();