diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-04-22 02:20:14 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-06-05 14:46:49 +0200 |
commit | 28fca6be6eed43da9b9449257a8577e4d8597590 (patch) | |
tree | 6b1fcf2df774a42b82e8958c7622ea0f926a8d39 /data/lib/otherButtons.js | |
parent | ca6d6953457b0176f9aed372367cb2645e575f3e (diff) | |
download | bugzilla-triage-28fca6be6eed43da9b9449257a8577e4d8597590.tar.gz |
Add the roll-down list for selection of categories.
Diffstat (limited to 'data/lib/otherButtons.js')
-rw-r--r-- | data/lib/otherButtons.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/data/lib/otherButtons.js b/data/lib/otherButtons.js index 3a1f76a..7a11395 100644 --- a/data/lib/otherButtons.js +++ b/data/lib/otherButtons.js @@ -60,7 +60,11 @@ function markBugTriaged() { // /fedora-meeting.2009-11-24-15.11.log.html // http://meetbot.fedoraproject.org/fedora-meeting/2009-11-24\ // /fedora-meeting.2009-11-24-15.11.log.html - addStuffToTextBox("keywords","Triaged"); + if (!hasXorgBugsCategory()) { + alert("This won't do! First set the category!"); + } else { + addStuffToTextBox("keywords","Triaged"); + } } function addingEmbelishments(list) { |