Archived
1
0

try fixing async posting

This commit is contained in:
Jeff Becker
2016-04-30 16:08:11 -04:00
parent d47d390536
commit 6d6ba47b2c
2 changed files with 3 additions and 2 deletions

View File

@@ -39,6 +39,8 @@ function DynReply(existingElem) {
this.elem = existingElem;
this.form = this.elem.querySelector("form");
this._error = document.getElementById("postform_msg");
var e = document.getElementById("postform_submit");
e.setAttribute("type", "button");
return;
}
@@ -76,7 +78,6 @@ function DynReply(existingElem) {
elem = document.createElement("input");
elem.setAttribute("name", "subject");
elem.setAttribute("value", "");
// submit
var submit = document.createElement("input");
submit.setAttribute("value", "reply");