mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-22 07:19:57 -05:00
Key: remove logging statement.
This commit is contained in:
parent
5d15c3dfef
commit
404bbac3a5
1 changed files with 0 additions and 1 deletions
|
@ -31,7 +31,6 @@ var Key = new function() {
|
|||
var toolHandler = 'on' + Base.capitalize(type),
|
||||
keyDown = type == 'keyDown';
|
||||
this[type.toLowerCase()] = function(event) {
|
||||
console.log(event.which || event.keyCode);
|
||||
var code = event.which || event.keyCode,
|
||||
key = keys[code] || String.fromCharCode(code).toLowerCase(),
|
||||
keyActive = activeKeys[key];
|
||||
|
|
Loading…
Reference in a new issue