Minor updates to client

This commit is contained in:
Carlos
2019-08-26 17:31:53 +02:00
parent 94a8831495
commit 227a3a8df3
4 changed files with 9 additions and 3 deletions

View File

@ -123,6 +123,8 @@ $("#commandInput").on('keydown', function (e) {
$("#commandInput").val(connectionManager.activeConnection.commands[commandHistoryIndex + 1]);
commandHistoryIndex = commandHistoryIndex + 1;
}
}else if(e.which == 9){ //Detect tab key
//TODO Suggest user from connectionManager.activeConnection.players;
}
});