From a72984896302dcbe2126dc6f6706b00067ee288d Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Mon, 16 Jan 2017 14:55:37 -0500 Subject: [PATCH] more --- contrib/js/nntpchan/post-reply.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/js/nntpchan/post-reply.js b/contrib/js/nntpchan/post-reply.js index 21513c0..7a1950f 100644 --- a/contrib/js/nntpchan/post-reply.js +++ b/contrib/js/nntpchan/post-reply.js @@ -162,9 +162,9 @@ ReplyBox.prototype.show = function(info) { if(data.message_id) { self.result("posted as "+data.message_id, "green"); self.clear(); - setTimeout(1000, function() { + setTimeout(function() { self.hide(); - }); + }, 1000); } else { self.result("error: " + data.error, "red"); }