Support SSL web sockets
This should make Ooui work with HTTPS Fixes #51
This commit is contained in:
parent
03f9ed2d91
commit
0ff69fd3b7
|
@ -43,7 +43,11 @@ function ooui (rootElementPath) {
|
||||||
var wsArgs = (rootElementPath.indexOf("?") >= 0 ? "&" : "?") +
|
var wsArgs = (rootElementPath.indexOf("?") >= 0 ? "&" : "?") +
|
||||||
"w=" + initialSize.width + "&h=" + initialSize.height;
|
"w=" + initialSize.width + "&h=" + initialSize.height;
|
||||||
|
|
||||||
socket = new WebSocket ("ws://" + document.location.host + rootElementPath + wsArgs, "ooui");
|
var proto = "ws";
|
||||||
|
if (location.protocol == "https:") {
|
||||||
|
proto = "wss";
|
||||||
|
}
|
||||||
|
socket = new WebSocket (proto + "://" + document.location.host + rootElementPath + wsArgs, "ooui");
|
||||||
|
|
||||||
socket.addEventListener ("open", function (event) {
|
socket.addEventListener ("open", function (event) {
|
||||||
console.log ("Web socket opened");
|
console.log ("Web socket opened");
|
||||||
|
|
Loading…
Reference in New Issue