summaryrefslogtreecommitdiff
path: root/web-static/socket.html
diff options
context:
space:
mode:
Diffstat (limited to 'web-static/socket.html')
-rw-r--r--web-static/socket.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/web-static/socket.html b/web-static/socket.html
index fc1b270..cf367e3 100644
--- a/web-static/socket.html
+++ b/web-static/socket.html
@@ -66,7 +66,7 @@
this.req = req
this.sock = new WebSocket("wss://rdimport.helsinki.at/rhctl/socket");
this.sock_onmessage = function (event) {
- $('#rawmsg').text(event.data);
+ $('#rawmsg').append(event.data + "\n\n");
}
this.sock.onmessage = this.sock_onmessage.bind(this);