Archived
1
0
This commit is contained in:
Jeff Becker 2016-04-25 16:47:14 -04:00
parent 9f5409a66a
commit 69f08dbb58
No known key found for this signature in database
GPG Key ID: AB950234D6EA286B

View File

@ -128,7 +128,7 @@ function livechan_got_post(widget, j) {
// do scroll // do scroll
while (widget.children.length > 20) { while (widget.children.length > 20) {
// remove top element // remove top element
widget.children.removeChild(widget.children[0]); widget.removeChild(widget.children[0]);
} }
nntpchan_buildpost(widget, j); nntpchan_buildpost(widget, j);
// scroll to bottom // scroll to bottom
@ -153,7 +153,7 @@ function inject_livechan_widget(prefix, parent) {
}; };
progress("initialize"); progress("initialize");
socket.onopen = function () { socket.onopen = function () {
progress("connected"); progress("streaming");
} }
socket.onmessage = function(ev) { socket.onmessage = function(ev) {
var j = null; var j = null;
@ -169,7 +169,6 @@ function inject_livechan_widget(prefix, parent) {
} }
socket.onclose = function(ev) { socket.onclose = function(ev) {
progress("connection closed"); progress("connection closed");
setTimeout(function(){ parent.innerHTML = ""; }, 5000);
} }
} else { } else {
parent.innerHTML = "<pre>livechan mode requires websocket support</pre>"; parent.innerHTML = "<pre>livechan mode requires websocket support</pre>";