Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions HeishaMon/htmlcode.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ static const char websocketJS[] PROGMEM =
" }"
" function startWebsockets() {"
" if(typeof MozWebSocket != \"undefined\") {"
" oWebsocket = new MozWebSocket(\"ws://\" + location.host + \":80\");"
" oWebsocket = new MozWebSocket(\"ws://\" + location.host);"
" } else if(typeof WebSocket != \"undefined\") {"
" /* The characters after the trailing slash are needed for a wierd IE 10 bug */"
" oWebsocket = new WebSocket(\"ws://\" + location.host + \":80/ws\");"
" oWebsocket = new WebSocket(\"ws://\" + location.host + \"/ws\");"
" }"
""
" if(oWebsocket) {"
Expand Down