diff options
Diffstat (limited to 'bugzillaBugTriage.js')
-rw-r--r-- | bugzillaBugTriage.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bugzillaBugTriage.js b/bugzillaBugTriage.js index bc3fb90..f1c5cd4 100644 --- a/bugzillaBugTriage.js +++ b/bugzillaBugTriage.js @@ -1282,7 +1282,7 @@ bzPage.prototype.generalPurposeCureForAllDisease = function this.dok.getElementById("addselfcc").checked = true; } else if (secondParameter === "NODEFAULTASSIGNEE") { this.dok.getElementById("set_default_assignee"). - .removeAttribute("checked"); + removeAttribute("checked"); } }; @@ -1372,7 +1372,7 @@ function bzPage(doc) { this.doc = $(doc); this.dok = doc; var that = this; - this.originalButton = this.doc.getElementById("commit"); + this.originalButton = this.dok.getElementById("commit"); var loginArr = $("#header ul:first li:last", this.doc).text().split("\n"); this.login = loginArr[loginArr.length-1].trim(); this.password = ""; |