Remove console logs

This commit is contained in:
fkloft 2014-07-03 21:46:44 +02:00
parent c6a6dc3105
commit ed4a04e97e

View File

@ -178,7 +178,6 @@ window.plugin.drawTools.addDrawControl = function() {
} }
window.plugin.drawTools.setAccessKeys = 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 // 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 // must be same order as in markup. Note that each toolbar has a container for save/cancel
var accessKeys = [ var accessKeys = [
@ -195,7 +194,6 @@ window.plugin.drawTools.setAccessKeys = function() {
buttons[i].accessKey = accessKeys[i]; buttons[i].accessKey = accessKeys[i];
} }
} }
console.info(Array.prototype.map.call(document.querySelectorAll("[accesskey]"), function(a){return a.accessKey}))
} }