Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. (function ($) {
  2.  
  3. Drupal.behaviors.pagerEffects = {
  4. attach: function (context,settings) {
  5. $('.view ul.pager li a',context).click(function () {
  6. $(this).closest('.view').find('.view-content')
  7. .animate({opacity:.5},500);
  8.  
  9. });
  10. }
  11. }
  12. }(jQuery));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement