Blame view
public/js/func.js
741 Bytes
127b2097d правки в личном к... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
$(function(){ $('.review-image-modal').click(function(){ cl($(this)); $(this).fancybox({ 'autoScale': true, 'transitionIn': 'elastic', 'transitionOut': 'elastic', 'speedIn': 500, 'speedOut': 300, 'autoDimensions': true, 'centerOnScroll': true }) }); }); |
2f592b01f сообщения |
15 16 17 18 19 20 21 22 23 24 25 26 |
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(); }; |
127b2097d правки в личном к... |
27 28 29 30 |
var cl = function(obj){ console.log(obj); } |