|
|
@ -18,18 +18,8 @@
|
|
|
|
).innerHTML += `<span style="color: ${color}">${text}</span><br>`;
|
|
|
|
).innerHTML += `<span style="color: ${color}">${text}</span><br>`;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
console.log(location.protocol);
|
|
|
|
|
|
|
|
console.log(
|
|
|
|
|
|
|
|
(location.protocol == "https:" ? "wss://" : "ws://") +
|
|
|
|
|
|
|
|
location.host +
|
|
|
|
|
|
|
|
location.pathname.replace(new RegExp("\/" + "$"), "") +
|
|
|
|
|
|
|
|
"/echo/"
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const socket = new WebSocket(
|
|
|
|
const socket = new WebSocket(
|
|
|
|
location.protocol == "https:"
|
|
|
|
(location.protocol == "https:" ? "wss://" : "ws://") +
|
|
|
|
? "wss://"
|
|
|
|
|
|
|
|
: "ws://" +
|
|
|
|
|
|
|
|
location.host +
|
|
|
|
location.host +
|
|
|
|
location.pathname.replace(new RegExp("\/" + "$"), "") +
|
|
|
|
location.pathname.replace(new RegExp("\/" + "$"), "") +
|
|
|
|
"/echo/"
|
|
|
|
"/echo/"
|
|
|
|