diff options
author | Matěj Cepl <mcepl@redhat.com> | 2010-01-15 17:05:54 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2010-01-15 17:05:54 +0100 |
commit | dda055677f72f92854d1707107a1c240a4f42351 (patch) | |
tree | 257425d17fa6113c986bba624415f84f102c2b94 /bugzillaBugTriage.js | |
parent | 935e368ef5533567bdeaca0839ab198daf8a377e (diff) | |
download | bugzilla-triage-dda055677f72f92854d1707107a1c240a4f42351.tar.gz |
Clear off default assignee value when automatically changing it.
Diffstat (limited to 'bugzillaBugTriage.js')
-rw-r--r-- | bugzillaBugTriage.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bugzillaBugTriage.js b/bugzillaBugTriage.js index 517df99..1579388 100644 --- a/bugzillaBugTriage.js +++ b/bugzillaBugTriage.js @@ -1203,8 +1203,8 @@ BzPage.prototype.changeOwner = function(newAssignee) { } if (newAssignee) { this.clickMouse(this.dok.getElementById("bz_assignee_edit_action")); - this.dok.getElementById("set_default_assignee").removeAttribute("checked"); this.dok.getElementById("assigned_to").value = newAssignee; + this.dok.getElementById("set_default_assignee").click(); this.dok.getElementById("setdefaultassigneebutton").style.display = "none"; } }; |