File "welcome-modal.js"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/welcome-modal.js
File size: 702 bytes
MIME-type: text/plain
Charset: utf-8
/* global jQuery, yith, wp */
jQuery( function ( $ ) {
"use strict";
var template = wp.template( 'yith-plugin-fw-welcome-modal' ),
content = $( template( {} ) ),
footer = content.find( '.yith-plugin-fw-welcome__footer' );
yith.ui.modal(
{
content : content,
footer : footer,
classes : {
wrap: 'yith-plugin-fw-welcome-modal'
},
width : '600px',
closeWhenClickingOnOverlay: false,
onClose : function () {
var location = footer.find( '.yith-plugin-fw-welcome__close' ).attr( 'href' );
if ( location ) {
window.location.href = location;
}
}
}
);
} );