uups. removed debug alert, added function call

This commit is contained in:
Arthur Mayer 2011-02-18 11:15:05 +01:00
parent 10f93c02c1
commit 56f126d5f2

View File

@ -215,7 +215,7 @@ DynMap.prototype = {
.keydown(function(event) {
if (event.keyCode == '13') {
event.preventDefault();
alert(this.value);
sendChat(this.value);
}
})
.appendTo(chat);