Created
May 11, 2020 17:03
-
-
Save Vesely/ff4a636f52197fb293b4c3e4c2cbdc4b to your computer and use it in GitHub Desktop.
Shoptet - přesměrování zákazníka do košíku po přidání položky do košíku
This file contains 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
<script> | |
var redirectToCard = function() { | |
if (!document.body.classList.contains('ajax-pending')) { | |
setTimeout(function() { | |
window.location.href = '/kosik/'; | |
}, 500); | |
} else { | |
setTimeout(redirectToCard, 500); | |
} | |
}; | |
[].forEach.call(document.querySelectorAll('.add-to-cart-button'), function(button) { | |
button.addEventListener('click', redirectToCard); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment