2023-06-19 17:37:09 +00:00
|
|
|
{% 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_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>
|
|
|
|
|
|
2023-06-19 18:52:12 +00:00
|
|
|
{% endput %}
|