n_oct/themes/nurgul/partials/scripts/setModal.htm

20 lines
757 B
HTML
Executable File

{% put scripts %}
<script>
function setModal(product){
$('#modal_img').html(`<img src="`+product.images[0].original_image_url+`" alt="Nurgul `+ product.name +`">`);
$('#modal_name').html(product.name);
$('#modal_price').html(product.formatted_price);
$('#modal_price').html(product.formatted_price);
$('#modal_desc').html(product.description);
$('#modal_add').html('{{add}}');
if(product.hasOwnProperty('special_price')){
$('#modal_discount').show();
$('#modal_discount').html(product.formatted_regular_price);
}else{
$('#modal_discount').hide();
}
}
</script>
{% endput %}