This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function defer() { | |
if (window.jQuery) { | |
//THE CODE | |
} | |
else { | |
setTimeout(function(){ | |
defer(); | |
}, 250); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
/* Move the zoomed image to the align with the top of the main image*/ | |
#cloud-zoom-big { | |
top:0 !important; | |
background: #fff; | |
width: 100% !important; | |
} | |
/* In this case the zoom lens' boundary container needed to be nudged to be confined to the main image's container*/ | |
.cloud-zoom-lens { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% comment %} Custom Search in Turbo Theme - Excludes untagged products {% endcomment %} | |
{% assign product_found = false %} | |
{% assign skip = false %} | |
{% assign collection_group = products | map: 'id' %} | |
{% assign collection_group_thumb = collection_group | append : 'thumb' %} | |
{% assign collection_group_mobile = collection_group | append : 'mobile' %} | |
{% capture new_row %} | |
<br class="clear product_clear" /> |
NewerOlder