Skip to content

Commit

Permalink
Fix for #969
Browse files Browse the repository at this point in the history
  • Loading branch information
jfarcand committed Mar 19, 2013
1 parent c2f3a46 commit 41ed6aa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/jquery/src/main/webapp/jquery/jquery.atmosphere.js
Original file line number Diff line number Diff line change
Expand Up @@ -2160,12 +2160,13 @@ jQuery.atmosphere = function() {

if (state == "messageReceived") {
if (_trackMessageSize(messageBody, _request, _response)) return;
} else {
_response,responseBody = messageBody;

This comment has been minimized.

Copy link
@staabm

staabm Mar 19, 2013

Contributor

Typo: response.responseBody not comma

This comment has been minimized.

Copy link
@jfarcand

jfarcand Mar 19, 2013

Author Member

Good catch, fixed!

}

_response.transport = transport;
_response.status = errorCode;
_response.state = state;
_response.responseBody = messageBody;

_invokeCallback();
}
Expand Down

0 comments on commit 41ed6aa

Please sign in to comment.