Blame view

public/js/func.js 1008 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
      });
d62e4b4e7   Сергей П   правки
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  
      $('.header .header__burger').click(function(){
          var this_btn = $(this);
          var wrap = this_btn.closest('.header');
  
          wrap.toggleClass('active-menu');
      });
  
      $('body').click(function(e){
          var target = $(e.target);
  
          if (!target.hasClass('.header__burger') && target.closest('.header__burger').length === 0){
              $('header.header').removeClass('active-menu');
          }
      });
127b2097d   Сергей П   правки в личном к...
26
  });
2f592b01f   Сергей П   сообщения
27
28
29
30
31
32
33
34
35
36
37
38
  
  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   Сергей П   правки в личном к...
39
40
41
42
  
  var cl = function(obj){
      console.log(obj);
  }
d62e4b4e7   Сергей П   правки
43