diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-04-24 23:43:49 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-06-05 14:46:49 +0200 |
commit | 6b739e89d0fa88899d680d09bbc7bcbd2628de31 (patch) | |
tree | f3ed094618b8c140473345fb0b19bc3d13dd4941 /data/lib/bugzillaDOMFunctions.js | |
parent | 2a04c3fc60e4f9cd8b59cbe6bcfbd56d0e29c98f (diff) | |
download | bugzilla-triage-6b739e89d0fa88899d680d09bbc7bcbd2628de31.tar.gz |
Don't allow marking bug as triaged when it doesn't have severity set.
Diffstat (limited to 'data/lib/bugzillaDOMFunctions.js')
-rw-r--r-- | data/lib/bugzillaDOMFunctions.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/data/lib/bugzillaDOMFunctions.js b/data/lib/bugzillaDOMFunctions.js index 0f22020..8392b87 100644 --- a/data/lib/bugzillaDOMFunctions.js +++ b/data/lib/bugzillaDOMFunctions.js @@ -203,6 +203,15 @@ function getSummary() { } /** + * Get the current title of the bug + * + * @return string + */ +function getSeverity() { + return document.getElementById("bug_severity").value; +} + +/** * Get the current email of the reporter of the bug. * * @return string |