removed some logging and version bump

This commit is contained in:
2017-08-15 03:14:07 +02:00
parent 2ca8bf1483
commit ca410736f7
4 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -1922,7 +1922,7 @@ var Input = (function() {
if (evt.key) str = evt.key;
else if (evt.which) str = String.fromCodePoint(evt.which);
if (str.length>0 && str.charCodeAt(0) >= 32) {
console.log("Typed ", str);
// console.log("Typed ", str);
sendStrMsg(str);
}
});
@@ -1972,7 +1972,7 @@ var Input = (function() {
}
key(combo, function (e) {
e.preventDefault();
console.log(combo);
// console.log(combo);
sendStrMsg(str)
});
}