diff options
author | Christian Pointner <equinox@helsinki.at> | 2016-09-24 22:11:26 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2016-09-24 22:11:26 (GMT) |
commit | a547fe88a42d1e0aebfc01d5d90dd21fc101fc2e (patch) | |
tree | 91881f9753215f7f19740b16798cc5c73421c386 /web-static | |
parent | c2ac2add756be8be1f74827bdc943636187e8bbf (diff) |
some more marshaller
Diffstat (limited to 'web-static')
-rw-r--r-- | web-static/socket.html | 2 |
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); |