Merge branch 'master' into dev

This commit is contained in:
Feng Lee 2015-05-28 10:07:18 +08:00
commit 5b36d1b677
2 changed files with 3 additions and 1 deletions

View File

@ -7,6 +7,8 @@ emqttd ChangeLog
Bugfix: issue #138 - when client disconnected normally, broker will not publish disconnected $SYS message
Bugfix: fix websocket url in emqttd/priv/www/websocket.html
Improve: issue #136 - $SYS topics result should not include $SYS messages

View File

@ -31,7 +31,7 @@
return document.getElementById(id);
}
function go() {
ws = new WebSocket("ws://" + location.host + "/mqtt/wsocket");
ws = new WebSocket("ws://" + location.host + "/mqtt");
ws.onopen = function () {
$('connstate').innerHTML = 'CONNECTED';
}