From 2be47791955ac66a2bca41e624617569dcfbbd57 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Wed, 19 May 2010 17:16:25 +0200 Subject: Setting default assignee button has different ID now. --- bugzillaBugTriage.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/bugzillaBugTriage.js b/bugzillaBugTriage.js index be74536..1eb2a4b 100644 --- a/bugzillaBugTriage.js +++ b/bugzillaBugTriage.js @@ -819,7 +819,7 @@ BZPage.prototype.changeAssignee = function(newAssignee) { this.doc.getElementById("assigned_to").value = newAssignee; this.doc.getElementById("set_default_assignee").checked = false; if (defAssigneeButton = this.doc - .getElementById("setdefaultassigneebutton")) { + .getElementById("setDefaultAssignee_btn")) { defAssigneeButton.style.display = "none"; } } @@ -1229,9 +1229,6 @@ BZPage.prototype.getAttachments = function() { * one, then it will ask user for it. * * @return String with the password - * @todo TODO myStorage is a global object ... should be probably a parameter - * of BZPage instance. - * - more importantly, we should use jetpack.storage.settings */ BZPage.prototype.getPassword = function() { if (jetpack.storage.settings.BZpassword) { -- cgit