Blame view
public/js/func.js
578 Bytes
127b2097d правки в личном к... |
1 |
$(function(){ |
e335a0a1d Задачи 56,57 |
2 3 4 5 6 7 8 9 |
$(".review-image-modal").fancybox({ buttons: [ "zoom", "fullScreen", "download", "thumbs", "close" ] |
127b2097d правки в личном к... |
10 11 |
}); }); |
2f592b01f сообщения |
12 13 14 15 16 17 18 19 20 21 22 23 |
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 правки в личном к... |
24 25 26 27 |
var cl = function(obj){ console.log(obj); } |