diff options
author | Matěj Cepl <mcepl@redhat.com> | 2010-05-19 17:16:25 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2010-05-19 17:16:25 +0200 |
commit | 2be47791955ac66a2bca41e624617569dcfbbd57 (patch) | |
tree | 6157525e7b28ecf69937119be5ee7176d92f6cea | |
parent | f5e3ed70f03e4bf2b6a890fa8fdb62739945d7c9 (diff) | |
download | bugzilla-triage-2be47791955ac66a2bca41e624617569dcfbbd57.tar.gz |
Setting default assignee button has different ID now.
-rw-r--r-- | bugzillaBugTriage.js | 5 |
1 files changed, 1 insertions, 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) { |