Skip to content

Commit

Permalink
small optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Curry committed Jan 5, 2010
1 parent a64ee14 commit c6deffe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendors/js/chat.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
var $this = $(this);
update($this);
setInterval(function() { update($this); }, opts.interval);
$(this).find("form").bind('submit', function() { post($(this)); return false});
$this.find("form").bind('submit', function() { post($this); return false});
});
};

Expand Down

0 comments on commit c6deffe

Please sign in to comment.