This commit is contained in:
calzoneman 2013-06-19 17:54:27 -04:00
parent dc5c6801ed
commit 7b60d0948e
15 changed files with 139 additions and 113 deletions

View file

@ -57,7 +57,7 @@ $("#chatline").keydown(function(ev) {
msg: msg
});
CHATHIST.push($("#chatline").val());
CHATLISTIDX = CHATHIST.length;
CHATHISTIDX = CHATHIST.length;
$("#chatline").val("");
}
return;
@ -326,3 +326,8 @@ else {
}
});
}
/* oh internet explorer, how I hate thee */
$(":input:not(textarea)").keypress(function(ev) {
return ev.keyCode != 13;
});