Skip to content

Instantly share code, notes, and snippets.

@zeroows
Created June 14, 2015 11:54
Show Gist options
  • Save zeroows/d0a904371697f271e180 to your computer and use it in GitHub Desktop.
Save zeroows/d0a904371697f271e180 to your computer and use it in GitHub Desktop.
var loc = window.location, new_uri;
if (loc.protocol === "https:") {
new_uri = "wss:";
} else {
new_uri = "ws:";
}
new_uri += "//" + loc.host;
var ws_location += loc.pathname + "/wsmessage";
var client = ngstomp(ws_location, {
debug: false,
devel: false
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment