Skip to content
This repository has been archived by the owner on Mar 27, 2018. It is now read-only.

Commit

Permalink
Revert client back to using non-wss and fixed location for the exampl…
Browse files Browse the repository at this point in the history
…e server.
  • Loading branch information
miksago committed Nov 11, 2010
1 parent c26b753 commit 11f03ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/client.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@
if (window["WebSocket"]) {
recvd = 0;
//host = (document.location.host != "" ? document.location.host : "localhost:8000");
host = "localhost";
conn = new WebSocket("wss://"+host+"/test");
host = "localhost:8000";
conn = new WebSocket("ws://"+host+"/test");
conn.onmessage = function(evt) {
log(evt.data);

Expand Down

0 comments on commit 11f03ad

Please sign in to comment.