From 4d954861aaa59a0547b8bfb86e0eea369474acc8 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Mon, 16 Jan 2017 14:46:10 -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 bc51b62..c294c1b 100644 --- a/contrib/js/nntpchan/post-reply.js +++ b/contrib/js/nntpchan/post-reply.js @@ -55,7 +55,7 @@ function ReplyBox() { var submit = document.createElement("input"); submit.setAttribute("value", "reply"); submit.setAttribute("class", "button"); - table_insert_row(tbody, document.createTextNode("Subject"), [elem, submit]); + table_insert_row(tbody, document.createTextNode("Subject"), [elem]); this.submit = submit; // Comment @@ -83,7 +83,7 @@ function ReplyBox() { elem = document.createElement("input"); elem.name = "captcha"; elem.autocomplete = "off"; - table_insert_row(tbody, document.createTextNode("Solution"), [elem]); + table_insert_row(tbody, document.createTextNode("Solution"), [elem, submit]); this.captcha_solution = elem; table.appendChild(tbody); this.elem.appendChild(table);