# HG changeset patch # User Florian Zeitz # Date 1398720241 -7200 # Node ID 24f6540c1eafda00316d1233b38c0e3484f056e3 # Parent 4e36b68d68da0625eed938bc3ba9832e45879204 mod_websocket: Update websocket.html diff -r 4e36b68d68da -r 24f6540c1eaf mod_websocket/websocket.html --- a/mod_websocket/websocket.html Mon Apr 28 23:23:45 2014 +0200 +++ b/mod_websocket/websocket.html Mon Apr 28 23:24:01 2014 +0200 @@ -6,7 +6,7 @@ if ("WebSocket" in window) { var ws = new WebSocket("ws://localhost:5280/xmpp-websocket/", "xmpp"); ws.onopen = function() { - ws.send(""); + ws.send(""); }; ws.onmessage = function (evt) { var message = evt.data;