* Small fix

This commit is contained in:
Bryan Ashby 2015-06-05 16:37:17 -06:00
parent 8a17ca694e
commit f2a61828aa
2 changed files with 3 additions and 1 deletions

View File

@ -294,6 +294,8 @@ function Client(input, output) {
buf = buf.concat(data.split('')); // remainder buf = buf.concat(data.split('')); // remainder
console.log(buf)
buf.forEach(function bufPart(s) { buf.forEach(function bufPart(s) {
var key = { var key = {
seq : s, seq : s,

View File

@ -459,7 +459,7 @@ MultiLineEditTextView2.prototype.onKeyPress = function(ch, key) {
} }
if(!handled) { if(!handled) {
MultiLineEditTextView2.super_.prototype.onSpecialKeyPress.call(this, key.name); MultiLineEditTextView2.super_.prototype.onKeyPress.call(this, ch, key);
} }
}; };