mirror of
https://github.com/novnc/noVNC.git
synced 2026-05-29 08:29:38 +00:00
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:
@@ -19,6 +19,9 @@
|
||||
|
||||
if (window.WebSocket) {
|
||||
Websock_native = true;
|
||||
} else if (window.MozWebSocket) {
|
||||
Websock_native = true;
|
||||
window.WebSocket = window.MozWebSocket;
|
||||
} else {
|
||||
/* no builtin WebSocket so load web_socket.js */
|
||||
Websock_native = false;
|
||||
|
||||
Reference in New Issue
Block a user