Guest User

Untitled

a guest
Jun 18th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. // previously (i.e. global to the chat module)
  2. var KEY_TAB = 9;
  3. // ...
  4.  
  5. function textEntryKeydown(event) {
  6. if (event.which == KEY_TAB) {
  7. var userlist = $('#userlist tr').map(function(){return this.id.substr(5)});
  8. autocompleteUsername($(event.target), userlist);
  9. return false;
  10. }
  11. }
Add Comment
Please, Sign In to add comment