summaryrefslogtreecommitdiff
path: root/web-static
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2016-09-24 22:11:26 (GMT)
committerChristian Pointner <equinox@helsinki.at>2016-09-24 22:11:26 (GMT)
commita547fe88a42d1e0aebfc01d5d90dd21fc101fc2e (patch)
tree91881f9753215f7f19740b16798cc5c73421c386 /web-static
parentc2ac2add756be8be1f74827bdc943636187e8bbf (diff)
some more marshaller
Diffstat (limited to 'web-static')
-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);