Fixes
This commit is contained in:
parent
dc5c6801ed
commit
7b60d0948e
15 changed files with 139 additions and 113 deletions
|
|
@ -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;
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue