Skip to content

Commit

Permalink
removed additional logging
Browse files Browse the repository at this point in the history
  • Loading branch information
zoo1 committed Aug 19, 2015
1 parent ff1d59c commit 0db8c77
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions public/js/chat.js
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,6 @@ $(document).ready(function() {
}
handleInput();
} else if(connected) {
console.log(e.which);
if(!typing) {
typing = true;
socket.send(JSON.stringify({type:'typing', typing:true}));
Expand All @@ -644,7 +643,6 @@ $(document).ready(function() {
//addition keypress binding for handling autocompletion
$("#message").keypress( function(event) {
// don't navigate away from the field on tab when selecting an item
console.log($(this));
if (event.keyCode === $.ui.keyCode.TAB )
event.preventDefault();
})
Expand Down

0 comments on commit 0db8c77

Please sign in to comment.