Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shopifypartners/3bd25eed09908c7f511b8f3d0e28bb11 to your computer and use it in GitHub Desktop.
Save shopifypartners/3bd25eed09908c7f511b8f3d0e28bb11 to your computer and use it in GitHub Desktop.
function openCart() {
$('.cart').addClass('js-active');
}
function closeCart() {
$('.cart .btn--close').click(function () {
$('.cart').removeClass('js-active');
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment