03.01.2022, 11:42
If you want to cancel previous animations then replace Custom JavaScript with this:
Code:
$(function() {
$('body').on('click touchstart', '.item-control', function() {
$('.item-control.active').removeClass('active');
this.offsetHeight;
this.classList.add('active');
});
});