You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
446 B
17 lines
446 B
/* global woodmart_settings */
|
|
(function($) {
|
|
woodmartThemeModule.onRemoveFromCart = function() {
|
|
if ('no' === woodmart_settings.woocommerce_ajax_add_to_cart) {
|
|
return;
|
|
}
|
|
|
|
woodmartThemeModule.$document.on('click', '.widget_shopping_cart .remove', function(e) {
|
|
e.preventDefault();
|
|
$(this).parent().addClass('removing-process');
|
|
});
|
|
};
|
|
|
|
$(document).ready(function() {
|
|
woodmartThemeModule.onRemoveFromCart();
|
|
});
|
|
})(jQuery);
|
|
|