* User stuff converted to use Async.js. More to come

This commit is contained in:
NuSkooler 2014-10-25 21:35:42 -06:00
parent 668fdd9166
commit 46875ccddd
3 changed files with 223 additions and 57 deletions

View file

@ -29,6 +29,8 @@ EditTextView.prototype.onKeyPress = function(key, isSpecial) {
assert(1 === key.length);
console.log('key: ' + key);
if(this.text.length < this.options.maxLength) {
key = strUtil.stylizeString(key, this.textStyle);