Created
October 24, 2016 13:15
-
-
Save arekolek/4afa0660d4eae6287554a5ebb2b4002e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name No mousewheel-zoom | |
// @namespace http://github.com/arekolek | |
// @version 0.1 | |
// @author Arek Olek | |
// @match http://*/* | |
// @match https://*/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
window.onmousewheel = document.onmousewheel = function(e){ | |
if(e.ctrlKey){ | |
e.preventDefault(); | |
e.stopPropagation(); | |
} | |
}; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment