Catch Mozilla prefixing of WebSocket.
Pull 475cfae from websockify. In Firefox 7 Mozilla has added Websockets support but prefixed the constructor with "Moz".
This commit is contained in:
parent
ad3f762409
commit
ce3bdbccc2
|
@ -19,6 +19,9 @@
|
||||||
|
|
||||||
if (window.WebSocket) {
|
if (window.WebSocket) {
|
||||||
Websock_native = true;
|
Websock_native = true;
|
||||||
|
} else if (window.MozWebSocket) {
|
||||||
|
Websock_native = true;
|
||||||
|
window.WebSocket = window.MozWebSocket;
|
||||||
} else {
|
} else {
|
||||||
/* no builtin WebSocket so load web_socket.js */
|
/* no builtin WebSocket so load web_socket.js */
|
||||||
Websock_native = false;
|
Websock_native = false;
|
||||||
|
|
Loading…
Reference in New Issue