[frio] Fix jS error that was preventing further script execution in theme settings

- $("#id_frio_background_image").val() was undefined when showing accents
This commit is contained in:
Hypolite Petovan 2023-04-17 21:26:12 -04:00
parent 7f6d6c9521
commit 1caea496c4
1 changed files with 13 additions and 11 deletions

View File

@ -192,19 +192,21 @@
// Create colorpickers // Create colorpickers
$("#frio_nav_bg, #frio_nav_icon_color, #frio_background_color, #frio_link_color, #frio_login_bg_color").colorpicker({format: 'hex', align: 'left'}); $("#frio_nav_bg, #frio_nav_icon_color, #frio_background_color, #frio_link_color, #frio_login_bg_color").colorpicker({format: 'hex', align: 'left'});
// show image options when user starts to type the address of the image if ($("#id_frio_background_image").length) {
$("#id_frio_background_image").keyup(function(){ // show image options when user starts to type the address of the image
var elText = $(this).val(); $("#id_frio_background_image").keyup(function () {
if(elText.length !== 0) { const elText = $(this).val();
$("#frio_bg_image_options").show(); if (elText.length !== 0) {
} else { $("#frio_bg_image_options").show();
$("#frio_bg_image_options").hide(); } else {
} $("#frio_bg_image_options").hide();
}); }
});
// show the image options if there is already an image // show the image options if there is already an image
if($("#id_frio_background_image").val().length != 0) { if ($("#id_frio_background_image").val().length != 0) {
$("#frio_bg_image_options").show(); $("#frio_bg_image_options").show();
}
} }
}); });
</script> </script>