Skip to content

Commit

Permalink
Fix IE http streaming regression
Browse files Browse the repository at this point in the history
  • Loading branch information
jfarcand committed Dec 1, 2010
1 parent 3f934a1 commit 68cb135
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 @@ -315,7 +315,8 @@ jQuery.atmosphere = function()
jQuery.atmosphere.publish(url, null, jQuery.atmosphere.request);
};

var transferDoc = new ActiveXObject("htmlfile");
//Must not use var here to avoid IE from disconnecting
transferDoc = new ActiveXObject("htmlfile");
transferDoc.open();
transferDoc.close();
var ifrDiv = transferDoc.createElement("div");
Expand Down

0 comments on commit 68cb135

Please sign in to comment.