aboutsummaryrefslogtreecommitdiffstats
path: root/data/lib
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-06-05 14:44:01 +0200
commit7821fb333377cbd3fce916c79e232ece6c8903e6 (patch)
tree29d7c74c8ba2dd6bfcc8e37dd2d493c31924a1ba /data/lib
parent8bf1efb83b09258433af73c7fa46edfe84f29c68 (diff)
downloadbugzilla-triage-7821fb333377cbd3fce916c79e232ece6c8903e6.tar.gz
Add logging to find out what's going on the computed style.
Diffstat (limited to 'data/lib')
-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");
};