<!-- START SCRIPTS/ValoracionRelojesSinStock/delete_imagen.html.twig -->
<script type="text/javascript">
$(document).on("click", ".vich-image-delete", function(event)
{
event.preventDefault();
let title = $(this).data("title_image_delete") || i18n.titleImageDelete;
let message = $(this).data("message_image_delete") || i18n.messageImageDelete;
AlertUtils.warning(title, message, null, AlertUtils.Buttons.doble, {
that: this,
onClose: function (dialog) {
dialog.close();
},
onAccept: function (dialog) {
$(this.that).hide();
$(this.that).prev().val(null).trigger("change");
$(this.that).parent().find("img").attr("src", null);
$(this.that).parents("tr").find(".vich-image-delete-original").val(null);
dialog.close();
}
}, "alert-utils");
});
</script>
<!-- END SCRIPTS/ValoracionRelojesSinStock/delete_imagen.html.twig -->