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
/* Disable collection toggle grid options for smaller screens */ | |
@media only screen and (max-width: 1180px) { | |
[data-toggle-grid="3"], | |
[data-toggle-grid="4"], | |
[data-toggle-grid="5"], | |
[data-toggle-grid="6"] { | |
display: none!important; | |
} | |
[data-toggle-grid="1"], | |
[data-toggle-grid="2"] { |
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
window.fetch('/cart.js') | |
.then(function(response) { | |
if(response.ok){ | |
return response.json().then(function(json) { | |
document.dispatchEvent(new CustomEvent('theme:cart:change', { | |
detail: { | |
cart: json, | |
}, | |
bubbles: true, | |
})); |