From ed4a04e97e765f6215a46ee28a96144520c5088e Mon Sep 17 00:00:00 2001 From: fkloft Date: Thu, 3 Jul 2014 21:46:44 +0200 Subject: [PATCH] Remove console logs --- plugins/draw-tools.user.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/draw-tools.user.js b/plugins/draw-tools.user.js index fa533a5d..ab05dad0 100644 --- a/plugins/draw-tools.user.js +++ b/plugins/draw-tools.user.js @@ -178,7 +178,6 @@ window.plugin.drawTools.addDrawControl = function() { } window.plugin.drawTools.setAccessKeys = function() { - console.log("accesskeys",arguments[0]); // there is no API to add accesskeys, so have to dig in the DOM // must be same order as in markup. Note that each toolbar has a container for save/cancel var accessKeys = [ @@ -195,7 +194,6 @@ window.plugin.drawTools.setAccessKeys = function() { buttons[i].accessKey = accessKeys[i]; } } - console.info(Array.prototype.map.call(document.querySelectorAll("[accesskey]"), function(a){return a.accessKey})) }