You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
744 B
30 lines
744 B
/* 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: false,
|
|
removalDelay : 500,
|
|
callbacks : {
|
|
beforeOpen: function() {
|
|
this.st.mainClass = 'mfp-move-horizontal';
|
|
},
|
|
open : function() {
|
|
woodmartThemeModule.$window.trigger('resize');
|
|
}
|
|
}
|
|
});
|
|
};
|
|
|
|
$(document).ready(function() {
|
|
woodmartThemeModule.product360Button();
|
|
});
|
|
})(jQuery);
|
|
|