Use keydown for key press detection in chat.
Fixes tab completion in Chrome. Closes #45.
This commit is contained in:
@ -631,7 +631,7 @@ window.chat.setupTime = function() {
|
||||
|
||||
|
||||
window.chat.setupPosting = function() {
|
||||
$('#chatinput input').keypress(function(event) {
|
||||
$('#chatinput input').keydown(function(event) {
|
||||
try{
|
||||
|
||||
var kc = (event.keyCode ? event.keyCode : event.which);
|
||||
|
Reference in New Issue
Block a user