func.js
741 Bytes
$(function(){
$('.review-image-modal').click(function(){
cl($(this));
$(this).fancybox({
'autoScale': true,
'transitionIn': 'elastic',
'transitionOut': 'elastic',
'speedIn': 500,
'speedOut': 300,
'autoDimensions': true,
'centerOnScroll': true
})
});
});
var spinStart = function(button) {
button.prop('disabled', true);
if (!button.find('.button-loader').length){
button.html('<div class="button-loader"></div>' + button.html());
}
};
var spinStop= function(button) {
button.prop('disabled', false);
button.find('.button-loader').remove();
};
var cl = function(obj){
console.log(obj);
}