Added background image sharing

Why did I miss this?
This commit is contained in:
Jeroen De Meerleer 2019-02-22 12:42:51 +01:00 committed by Hypolite Petovan
parent 10a8d6a563
commit 3af3887bfa
1 changed files with 44 additions and 0 deletions

View File

@ -57,6 +57,25 @@
theme.background_color = $("#id_frio_background_color").val();
}
if ($("#id_frio_background_image").length) {
theme.background_image = $("#id_frio_background_image").val();
var elText = theme.background_image;
if ($("#id_frio_bg_image_option_stretch").is(":checked") == true) {
theme.background_image_option = "stretch";
}
if ($("#id_frio_bg_image_option_cover").is(":checked") == true) {
theme.background_image_option = "cover";
}
if ($("#id_frio_bg_image_option_contain").is(":checked") == true) {
theme.background_image_option = "contain";
}
if ($("#id_frio_bg_image_option_repeat").is(":checked") == true) {
theme.background_image_option = "repeat";
}
}
if ($("#frio_contentbg_transp").length) {
theme.contentbg_transp = $("#frio_contentbg_transp").val();
}
@ -96,6 +115,31 @@
$("#id_frio_background_color").val(theme.background_color);
}
if ($("#id_frio_background_image").length) {
$("#id_frio_background_image").val(theme.background_image);
var elText = theme.background_image;
if(elText.length !== 0) {
$("#frio_bg_image_options").show();
} else {
$("#frio_bg_image_options").hide();
}
switch (theme.background_image_option) {
case 'stretch':
$("#id_frio_bg_image_option_stretch").prop("checked", true);
break;
case 'cover':
$("#id_frio_bg_image_option_cover").prop("checked", true);
break;
case 'contain':
$("#id_frio_bg_image_option_contain").prop("checked", true);
break;
case 'repeat':
$("#id_frio_bg_image_option_repeat").prop("checked", true);
break;
}
}
if ($("#frio_contentbg_transp").length) {
$("#frio_contentbg_transp").val(theme.contentbg_transp);
}