From ef915aaaa2443435daccf90fc56da0d17b5a7651 Mon Sep 17 00:00:00 2001 From: vita10gy Date: Sat, 13 Apr 2013 00:39:25 -0500 Subject: [PATCH] deleted console calls --- plugins/portal-highlighter-can-make-level.user.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/portal-highlighter-can-make-level.user.js b/plugins/portal-highlighter-can-make-level.user.js index 465260f0..301d0b7e 100644 --- a/plugins/portal-highlighter-can-make-level.user.js +++ b/plugins/portal-highlighter-can-make-level.user.js @@ -27,7 +27,6 @@ window.plugin.portalHighligherPortalsCanMakeLevel.highlight = function(data,high var current_level = Math.floor(getPortalLevel(d)); var potential_level = Math.floor(window.potentialPortalLevel(d)); var opacity = .7; - console.log(current_level + ' ' + potential_level+ ' ' + highlight_level); if( potential_level > current_level && potential_level === highlight_level) { color = 'red'; data.portal.setStyle({fillColor: color, fillOpacity: opacity}); @@ -57,7 +56,6 @@ window.plugin.portalHighligherPortalsCanMakeLevel.playerCanSoloLevel = function( } window.plugin.portalHighligherPortalsCanMakeLevel.getHighlighter = function(lvl) { return(function(data){ - console.log(lvl); window.plugin.portalHighligherPortalsCanMakeLevel.highlight(data,lvl); }); }