File: /home4/cca63905/www/nueva/modules/popupmailchip/js/contentbox.js
/**
* @author Miguel Costa for emotionLoop
* @copyright emotionLoop
*/
jQuery(document).ready(function(){
$(".fileDelete").on( "click", function(){
var fileToDelete = $(this).parent().data("filename");
var confirmDelete = confirm("Do you really want to delete this file?");
if ( confirmDelete ) {
$("#ignore_changes").val(1);
$("#delete_file").val( fileToDelete );
$("#delete_file").closest("form").submit();
}
});
$(".fileUrl").on("click",function(){
var base_path = $(this).parent().data("filepath");
var fileName = $(this).parent().data("filename");
prompt("File Url",base_path+"content/"+fileName);
})
$("#contentbox_shop_select, #contentbox_language_select").on("change",function(){
$("#ignore_changes").val(1);
$(this).closest("form").submit();
})
$("#use_content_wrapper").on('change',function(){
var currentOption = $(this).val();
if ( currentOption == 0 ) {
$("#content_wrapper_class, #content_wrapper_id").each( function(){
$(this).attr('disabled', true);
$(this).closest('.form-group').hide();
});
} else {
$("#content_wrapper_class, #content_wrapper_id").each( function(){
$(this).attr('disabled', false);
$(this).closest('.form-group').show();
});
}
})
$("#content_wrapper_class, #content_wrapper_id").each( function(){
if ( $(this).prop('disabled') == true ) {
$(this).closest('.form-group').hide();
}
});
})