Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. var refreshRating = function() {
  2. $('.rating').raty( { path: '/assets', scoreName: 'comment[rating]' });
  3. $('.rated').raty({ path: '/assets',
  4. readOnly: true,
  5. score: function() {
  6. return $(this).attr('data-score');
  7. }
  8. });
  9. };
  10.  
  11. $(document).on('turbolinks:load ajaxSuccess', function(){
  12.  
  13. refreshRating();
  14.  
  15. $('.img-zoom').elevateZoom({
  16. zoomType: "lens",
  17. lensShape : "round",
  18. lensSize : 200
  19. });
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement