diff options
-rw-r--r-- | bugzillaBugTriage.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bugzillaBugTriage.js b/bugzillaBugTriage.js index aa9456a..afff0b1 100644 --- a/bugzillaBugTriage.js +++ b/bugzillaBugTriage.js @@ -1446,7 +1446,7 @@ BzPage.prototype.parseBacktrace = function (ret) { */ BzPage.prototype.buildButtons = function (above,below) { //Generate a list of <input> elements in the page - this.addNewButton(this.dok.getElementById("commit_top"), + this.addNewButton(this.dok.getElementById("commit_middle"), "changeOwnerbtn","reASSIGN","","ASSIGNED","NODEFAULTASSIGNEE"); // THE MAIN BUTTON ROWS @@ -1454,7 +1454,8 @@ BzPage.prototype.buildButtons = function (above,below) { var brElement = this.dok.createElement("br"); commentBox.parentNode.normalize(); commentBox.parentNode.insertBefore(brElement,commentBox); - this.generateToolBar(commentBox.previousSibling,above); +// this.generateToolBar(commentBox.previousSibling,above); + this.generateToolBar(brElement,above); this.generateToolBar(this.originalButton,below); var commentArea = this.dok.getElementById("comment_status_commit"); |