aboutsummaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2011-03-30 02:53:18 +0200
committerMatěj Cepl <mcepl@redhat.com>2011-03-30 02:53:18 +0200
commit978daa50280099edad980d49aa0a4dd86647846a (patch)
treec6739d925174f4ee314456ccbf67dad16b6d18c9 /data
parent90d0d68ce7b831527bc87eb9e6c4e37af39b8f9b (diff)
downloadbugzilla-triage-978daa50280099edad980d49aa0a4dd86647846a.tar.gz
Add logging to find out what's going on the computed style.
Diffstat (limited to 'data')
-rw-r--r--data/lib/addNewLinks.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/data/lib/addNewLinks.js b/data/lib/addNewLinks.js
index 020dbb3..735a0fc 100644
--- a/data/lib/addNewLinks.js
+++ b/data/lib/addNewLinks.js
@@ -59,6 +59,7 @@ function addNewLinks(d) {
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");
};