Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
immortalist
/
wp-content
/
themes
/
woodmart
/
js
/
scripts
/
wc
:
product360Button.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
/* global woodmart_settings */ (function($) { woodmartThemeModule.product360Button = function() { if ('undefined' === typeof $.fn.magnificPopup) { return; } $('.product-360-button a').magnificPopup({ type : 'inline', mainClass : 'mfp-fade', preloader : false, tClose : woodmart_settings.close, tLoading : woodmart_settings.loading, fixedContentPos: true, removalDelay : 600, callbacks : { beforeOpen: function() { this.wrap.addClass('wd-popup-slide-from-left'); }, open : function() { woodmartThemeModule.$window.trigger('resize'); } } }); }; $(document).ready(function() { woodmartThemeModule.product360Button(); }); })(jQuery);