Skip to content

Commit

Permalink
fix the issue #1
Browse files Browse the repository at this point in the history
  • Loading branch information
gxf20052139 authored and rstoyanchev committed Nov 27, 2012
1 parent 848e549 commit 14b2888
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/webapp/resources/js/chat.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ $(document).ready(function() {
return;
}
var form = $("#joinChatForm");
that.activePollingXhr($.ajax({url : form.attr("action"), type : "GET", data : form.serialize(),
that.activePollingXhr($.ajax({url : form.attr("action"), type : "GET", data : form.serialize(),cache: false,
success : function(messages) {
for ( var i = 0; i < messages.length; i++) {
that.chatContent(that.chatContent() + messages[i] + "\n");
Expand Down

0 comments on commit 14b2888

Please sign in to comment.