Skip to content

Instantly share code, notes, and snippets.

@Sally165
Created April 21, 2023 09:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sally165/626a6a83e45ddb89cbd60743803a59ac to your computer and use it in GitHub Desktop.
Save Sally165/626a6a83e45ddb89cbd60743803a59ac to your computer and use it in GitHub Desktop.
<!-- PAGEFLY CART HELPER - DO NOT DELETE -->
<script>
try {
setTimeout(function () {
window.__pagefly_helper_store__ &&
window.__pagefly_helper_store__.subscribe(function (res) {
$.getJSON('/cart.json').then(cart => {
console.log('check cart', res);
window.SOLID.store.dispatch("cart", cart);
window.SOLID.store.dispatch("cart.item_count", cart.item_count);
window.SOLID.store.dispatch("addToCartSuccess", cart);
});
});
}, 2500);
} catch (e) {
console.warn(e);
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment