Closed GoogleCodeExporter closed 9 years ago
https://developer.mozilla.org/en/Firefox_6_for_developers#Networking
That's maybe because the WebSocket object is renamed to MozWebSocket. If you
want to use the MozWebSocket as the WebSocket, inject the following code
snippet before loading jquery.stream.js. I don't know the exact reason, but the
MozWebSocket makes firefox crash when running the test suite.
<script type="text/javascript">
if (window.MozWebSocket) {
window.WebSocket = window.MozWebSocket;
}
</script>
Original comment by flowersi...@gmail.com
on 17 Sep 2011 at 2:41
It would be better to support MozWebSocket in jQuery Stream.
Original comment by flowersi...@gmail.com
on 18 Sep 2011 at 3:44
This issue was closed by revision r181.
Original comment by flowersi...@gmail.com
on 18 Sep 2011 at 5:32
This issue was updated by revision r195.
Original comment by flowersi...@gmail.com
on 6 Oct 2011 at 2:14
Original issue reported on code.google.com by
menzel...@googlemail.com
on 17 Sep 2011 at 1:21