remove 'resonator-display-zoom-level-decrease' as it now does nothing

This commit is contained in:
Jon Atkins 2013-09-03 16:34:08 +01:00
parent b339918c98
commit 203ea7a76e

View File

@ -1,12 +1,12 @@
// ==UserScript== // ==UserScript==
// @id iitc-plugin-resonator-display-zoom-level-decrease@xelio // @id iitc-plugin-resonator-display-zoom-level-decrease@xelio
// @name IITC plugin: resonator display zoom level decrease // @name IITC plugin: resonator display zoom level decrease
// @category Tweaks // @category Deleted
// @version 1.0.2.@@DATETIMEVERSION@@ // @version 1.0.2.@@DATETIMEVERSION@@
// @namespace https://github.com/jonatkins/ingress-intel-total-conversion // @namespace https://github.com/jonatkins/ingress-intel-total-conversion
// @updateURL @@UPDATEURL@@ // @updateURL @@UPDATEURL@@
// @downloadURL @@DOWNLOADURL@@ // @downloadURL @@DOWNLOADURL@@
// @description [@@BUILDNAME@@-@@BUILDDATE@@] Resonator start display earlier // @description [@@BUILDNAME@@-@@BUILDDATE@@] Resonator display distance is no longer an option set with a plugin. With the 'draw-resonators' plugin you can now turn on/off resonators in the layer chooser instead.
// @include https://www.ingress.com/intel* // @include https://www.ingress.com/intel*
// @include http://www.ingress.com/intel* // @include http://www.ingress.com/intel*
// @match https://www.ingress.com/intel* // @match https://www.ingress.com/intel*
@ -14,22 +14,3 @@
// @grant none // @grant none
// ==/UserScript== // ==/UserScript==
@@PLUGINSTART@@
// PLUGIN START ////////////////////////////////////////////////////////
// use own namespace for plugin
window.plugin.resonatorDisplayZoomLevelDecrease = function() {};
window.plugin.resonatorDisplayZoomLevelDecrease.changeConstant = function() {
// Minimum zoom level resonator will display
window.RESONATOR_DISPLAY_ZOOM_LEVEL = 16;
};
var setup = window.plugin.resonatorDisplayZoomLevelDecrease.changeConstant;
// PLUGIN END //////////////////////////////////////////////////////////
@@PLUGINEND@@