parent
d9936ab1d6
commit
f6e4b40c0c
36
plugins/scroll-wheel-zoom-disable.user.js
Normal file
36
plugins/scroll-wheel-zoom-disable.user.js
Normal file
@ -0,0 +1,36 @@
|
||||
// ==UserScript==
|
||||
// @id iitc-plugin-scroll-wheel-zoom-disable@jonatkins
|
||||
// @name IITC plugin: disable mouse wheel zoom
|
||||
// @category Tweaks
|
||||
// @version 0.1.0.@@DATETIMEVERSION@@
|
||||
// @namespace https://github.com/jonatkins/ingress-intel-total-conversion
|
||||
// @updateURL @@UPDATEURL@@
|
||||
// @downloadURL @@DOWNLOADURL@@
|
||||
// @description [@@BUILDNAME@@-@@BUILDDATE@@] Disable the use of mouse wheel to zoom. The map zoom controls or keyboard are still available.
|
||||
// @include https://www.ingress.com/intel*
|
||||
// @include http://www.ingress.com/intel*
|
||||
// @match https://www.ingress.com/intel*
|
||||
// @match http://www.ingress.com/intel*
|
||||
// @grant none
|
||||
// ==/UserScript==
|
||||
|
||||
|
||||
@@PLUGINSTART@@
|
||||
|
||||
// PLUGIN START ////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// use own namespace for plugin
|
||||
window.plugin.scrollWheelZoomDisable = function() {};
|
||||
|
||||
window.plugin.scrollWheelZoomDisable.setup = function() {
|
||||
|
||||
window.map.scrollWheelZoom.disable();
|
||||
|
||||
};
|
||||
|
||||
var setup = window.plugin.scrollWheelZoomDisable.setup;
|
||||
|
||||
// PLUGIN END //////////////////////////////////////////////////////////
|
||||
|
||||
@@PLUGINEND@@
|
Loading…
x
Reference in New Issue
Block a user