D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
raptqcnr
/
www
/
wp-content
/
themes
/
woodmart
/
js
/
scripts
/
wc
/
Filename :
onRemoveFromCart.js
back
Copy
/* 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);