Advertisement
rccharles

Fast Scrollling

Jan 29th, 2017
500
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name            Final Fast Scrolling
  3. // @namespace       bubo-bubo/gmscripts
  4. // @description     ASC - disable jquery animation.
  5. // @grant           unsafeWindow
  6. // @run-at          document-end
  7. // @include         https://discussions.apple.com/*
  8. // @include         https://discussionsjapan.apple.com/*
  9. // @include         https://discussionskorea.apple.com/*
  10. // @include         https://discussionschinese.apple.com/*
  11. // @include         https://communities.apple.com/*
  12. // @version        1.0
  13. // ==/UserScript==
  14.  
  15. // Based on Hiroto's efforts. Moded by rccharles.
  16.  
  17. var $ = unsafeWindow.jQuery;
  18. var _debug                  = 1;
  19.  
  20. //console.log('about to initialize');
  21. // alert("hiroto's version")
  22. if (_debug)  console.log('initializing disable jquery animation (globally)');
  23.  
  24. // disable jquery animation (globally)
  25. $.fx.off = true;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement