/* global woodmart_settings */ (function($) { $.each([ 'frontend/element_ready/wd_products.default', 'frontend/element_ready/wd_products_tabs.default' ], function(index, value) { woodmartThemeModule.wdElementorAddAction(value, function() { woodmartThemeModule.addToCart(); }); }); woodmartThemeModule.addToCart = function() { var that = this; var timeoutNumber = 0; var timeout; woodmartThemeModule.$body.on('added_to_cart', function() { if (woodmart_settings.add_to_cart_action === 'popup') { var html = [ '
', '

' + woodmart_settings.added_to_cart + '

', '' + woodmart_settings.continue_shopping + '', '' + woodmart_settings.view_cart + '', '
' ].join(''); $.magnificPopup.open({ removalDelay: 500, //delay removal by X to allow out-animation tClose : woodmart_settings.close, tLoading : woodmart_settings.loading, callbacks : { beforeOpen: function() { this.st.mainClass = 'mfp-move-horizontal cart-popup-wrapper'; } }, items : { src : '', type: 'inline' } }); $('.white-popup').on('click', '.close-popup', function(e) { e.preventDefault(); $.magnificPopup.close(); }); closeAfterTimeout(); } else if (woodmart_settings.add_to_cart_action === 'widget') { clearTimeout(timeoutNumber); var $selector = $('.act-scroll .wd-header-cart .wd-dropdown-cart, .whb-sticked .wd-header-cart .wd-dropdown-cart'); if ($selector.length > 0) { $selector.addClass('wd-opened'); } else { $('.whb-header .wd-header-cart .wd-dropdown-cart').addClass('wd-opened'); } var $cartOpener = $('.cart-widget-opener'); if ($cartOpener.length > 0) { $cartOpener.first().trigger('click'); } timeoutNumber = setTimeout(function() { $('.wd-dropdown-cart').removeClass('wd-opened'); }, 3500); closeAfterTimeout(); } woodmartThemeModule.$document.trigger('wdActionAfterAddToCart'); }); var closeAfterTimeout = function() { if ('yes' !== woodmart_settings.add_to_cart_action_timeout) { return false; } clearTimeout(timeout); timeout = setTimeout(function() { $('.wd-close-side').trigger('click'); $.magnificPopup.close(); }, parseInt(woodmart_settings.add_to_cart_action_timeout_number) * 1000); }; }; $(document).ready(function() { woodmartThemeModule.addToCart(); }); })(jQuery);