Archived
1
0

fix js id for postform_container

This commit is contained in:
Jeff Becker
2016-04-30 12:56:24 -04:00
parent 3a1a24f6da
commit 048300d6e4
2 changed files with 4 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ var dynreply;
function getReplyTo() {
if(!dynreply) {
var e = document.getElementById("postform-container");
var e = document.getElementById("postform_container");
if (e) {
// use existing postform
dynreply = new DynReply(e);
@@ -44,7 +44,7 @@ function DynReply(existingElem) {
// build new post form
var elem = document.createElement("div");
elem.setAttribute("id", "postform-container");
elem.setAttribute("id", "postform_container");
this.elem = elem;
// build post form
this.form = document.createElement("form");