Blame view

frontend/web/js/teamitem/rating.js 1.21 KB
559be889   Alexander Karnovsky   Init test-9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
  jQuery(function($) {

      $('#rating_1').rating({

      image: '/images/teamitem/stars.png',

          readOnly: true,

      callback: function(responce){

          this.vote_success.fadeOut(2000);

      }

  });

  

      $('#rating_2').rating({

          image: '/images/teamitem/stars.png',

          readOnly: true,

          callback: function(responce){

              this.vote_success.fadeOut(2000);

          }

      });

      $('#rating_3').rating({

          image: '/images/teamitem/stars.png',

          readOnly: true,

          callback: function(responce){

              this.vote_success.fadeOut(2000);

          }

      });

      $('#rating_4').rating({

          image: '/images/teamitem/stars.png',

          readOnly: true,

          callback: function(responce){

              this.vote_success.fadeOut(2000);

          }

      });

      $('#rating_5').rating({

          image: '/images/teamitem/stars.png',

          readOnly: true,

          callback: function(responce){

              this.vote_success.fadeOut(2000);

          }

      });

      $('#rating_6').rating({

          image: '/images/teamitem/stars.png',

          readOnly: true,

          callback: function(responce){

              this.vote_success.fadeOut(2000);

          }

      });

  });