-
Notifications
You must be signed in to change notification settings - Fork 2
Websockets
michaelSaunders edited this page Mar 11, 2018
·
6 revisions
$(function () {
// Correctly decide between ws:// and wss://
var ws_scheme = window.location.protocol == "https:" ? "wss" : "ws";
var ws_path = ws_scheme + '://' + window.location.host + "/chat/stream/";
console.log("Connecting to " + ws_path);
var socket = new ReconnectingWebSocket(ws_path);