aboutsummaryrefslogtreecommitdiffstats
path: root/data/lib
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2011-04-07 20:08:35 +0200
committerMatěj Cepl <mcepl@redhat.com>2011-06-05 14:44:43 +0200
commit03eb77511381d3648bc4375d16e4b55cdb7dd0b3 (patch)
tree5fc10fc9ba283535457d9a49a598daca45917c8d /data/lib
parent26fc9ed67392805abcfeec21f0007e5b3c160708 (diff)
downloadbugzilla-triage-03eb77511381d3648bc4375d16e4b55cdb7dd0b3.tar.gz
Make a new bug link for the current component independent of BZ instance.
Diffstat (limited to 'data/lib')
-rw-r--r--data/lib/addNewLinks.js17
1 files changed, 9 insertions, 8 deletions
diff --git a/data/lib/addNewLinks.js b/data/lib/addNewLinks.js
index 735a0fc..02bd658 100644
--- a/data/lib/addNewLinks.js
+++ b/data/lib/addNewLinks.js
@@ -36,9 +36,6 @@
* ***** END LICENSE BLOCK ***** */
function addNewLinks(d) {
- // Why we are using d.querySelector for something which could be
- // getElementById().value? FIXME
- // console.log("addNewLinks : product = " + document.getElementById("product").value);
var product = d.querySelector("#field_container_product option[selected]");
var component = d.querySelector("#component option[selected]");
@@ -58,11 +55,15 @@ function addNewLinks(d) {
'&component=' + encodeURIComponent(component.value);
if (label) {
var componentElement = document.getElementById("bz_component_input");
- var computedStyle = window.getComputedStyle(componentElement);
- console.log("computedStyle.display = " + computedStyle.display);
- if (computedStyle.display == "none") {
- label = document.getElementById("bz_component_edit_container");
- };
+ if (componentElement) { // We are in the Red Hat bugzilla
+ // do we have components list visible?
+ if (document.getElementById('bz_component_input').
+ classList.contains("bz_default_hidden")) {
+ label = document.getElementById("bz_component_edit_container");
+ }
+ } else {
+ label = document.getElementById('component').parentNode;
+ }
createDeadLink("file_new_bug_component", "new", label, url, [], "parens");
}
}