more
This commit is contained in:
parent
aafe3ad2a8
commit
4d954861aa
@ -55,7 +55,7 @@ function ReplyBox() {
|
|||||||
var submit = document.createElement("input");
|
var submit = document.createElement("input");
|
||||||
submit.setAttribute("value", "reply");
|
submit.setAttribute("value", "reply");
|
||||||
submit.setAttribute("class", "button");
|
submit.setAttribute("class", "button");
|
||||||
table_insert_row(tbody, document.createTextNode("Subject"), [elem, submit]);
|
table_insert_row(tbody, document.createTextNode("Subject"), [elem]);
|
||||||
this.submit = submit;
|
this.submit = submit;
|
||||||
|
|
||||||
// Comment
|
// Comment
|
||||||
@ -83,7 +83,7 @@ function ReplyBox() {
|
|||||||
elem = document.createElement("input");
|
elem = document.createElement("input");
|
||||||
elem.name = "captcha";
|
elem.name = "captcha";
|
||||||
elem.autocomplete = "off";
|
elem.autocomplete = "off";
|
||||||
table_insert_row(tbody, document.createTextNode("Solution"), [elem]);
|
table_insert_row(tbody, document.createTextNode("Solution"), [elem, submit]);
|
||||||
this.captcha_solution = elem;
|
this.captcha_solution = elem;
|
||||||
table.appendChild(tbody);
|
table.appendChild(tbody);
|
||||||
this.elem.appendChild(table);
|
this.elem.appendChild(table);
|
||||||
|
Reference in New Issue
Block a user