Loading...
document.addEventListener('pagefly.addToCart', function() { fetch('/cart.js') .then(response => response.json()) .then(cart => { document.dispatchEvent(new CustomEvent('cart:refresh', { detail: { cart: cart } })); }); });