/** * wacp-frontend.js * * @author Your Inspiration Themes * @package YITH WooCommerce Added to Cart Popup * @version 1.0.0 */ jQuery(document).ready(function(a){"use strict";var b=a("#yith-wacp-popup"),d=(b.find(".yith-wacp-overlay"),b.find(".yith-wacp-close")),e=b.find(".yith-wacp-wrapper"),f=e.width(),g=e.height(),h=function(){b.removeClass("open"),setTimeout(function(){b.find(".yith-wacp-content").html("")},1e3),a(document).trigger("yith_wacp_popup_after_closing")},i=function(){var b=a(window).width(),c=a(window).height(),d=b-60>f?f:b-60,h=c-120>g?g:c-120;e.css({left:b/2-d/2,top:c/2-h/2,width:d+"px",height:h+"px"})};a(window).on("resize",i),a("body").on("added_to_cart",function(c,d,e,f){"undefined"==typeof d&&(d=a.parseJSON(sessionStorage.getItem(wc_cart_fragments_params.fragment_name))),a.each(d,function(a,c){if("yith_wacp_message"==a)return b.find(".yith-wacp-content").html(c),i(),b.addClass("open"),b.find("a.continue-shopping").on("click",function(a){a.preventDefault(),h()}),!1})}),d.on("click",function(a){a.preventDefault(),h()})});