summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbuttle <chris@gatopelao.org>2023-06-13 16:01:30 +0200
committerbuttle <chris@gatopelao.org>2023-06-13 16:01:30 +0200
commit17f2b8d25450624b57732ab42b1a17a319b31bec (patch)
tree3feea070e527347061e7b2bc7c40a419987ba510
parent66c61333a85050c8cfc8a6f505e2e1109accbcba (diff)
fixes jquery filtercolor-picker
-rw-r--r--liberaforms/templates/form/_js/form_style.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/liberaforms/templates/form/_js/form_style.js b/liberaforms/templates/form/_js/form_style.js
index 951eef34..ed1fc0af 100644
--- a/liberaforms/templates/form/_js/form_style.js
+++ b/liberaforms/templates/form/_js/form_style.js
@@ -166,8 +166,8 @@ function selectFontColor(combo) {
},
success: function(data, textStatus, jqXHR)
{
- $('.ds-liberaform').css('color', data.combo.foreground);
- $('.ds-liberaform').css('background-color', data.combo.background);
+ $('.liberaform').css('color', data.combo.foreground);
+ $('.liberaform').css('background-color', data.combo.background);
}
});
}