diff options
author | Matěj Cepl <mcepl@redhat.com> | 2010-01-10 11:06:20 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2010-01-10 11:06:20 +0100 |
commit | 10f87e54be515e61a86c1d0c8de4c0dc2a0f41ec (patch) | |
tree | a9741101b0f68f698fa73919d8ea165eafdb547b | |
parent | fdaaac9d0914dabdd9a0a8a430d7bafefe35172c (diff) | |
download | bugzilla-triage-10f87e54be515e61a86c1d0c8de4c0dc2a0f41ec.tar.gz |
Fix for new bugzilla
-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"); |