Advertisement
Guest User

Untitled

a guest
Jul 24th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Disable middle-click autoscrolling
  3. // @description Disable middle-click autoscrolling
  4. // @author ?
  5. // ==/UserScript==
  6.  
  7. (function() {
  8.  
  9. window.addEventListener('mousedown', function(evt) {
  10. if (evt.button == 1) {
  11. evt.preventDefault();
  12. evt.stopPropagation();
  13. }
  14. }, true);
  15.  
  16. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement