Advertisement
Guest User

Untitled

a guest
Apr 29th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.50 KB | None | 0 0
  1.  
  2.     $('#small-chat').click(function () {
  3.         $('#big-chat').attr('data-mode', 'inactive');
  4.         $('#small-chat').attr('data-mode', 'active');
  5.         $('#theatre').attr('data-mode', 'inactive');
  6.         if ($('#mod-btn').attr('data-todo') == 'show') {
  7.             // Not showing
  8.             animate('chat', 'up');
  9.         } else {
  10.             // Showing
  11.             animate('chat', 'minidown');
  12.         }
  13.         animate('chat', 'standard');
  14.         animate('stream', 'standard');
  15.     });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement