diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-03-30 02:53:18 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-03-30 02:53:18 +0200 |
commit | 978daa50280099edad980d49aa0a4dd86647846a (patch) | |
tree | c6739d925174f4ee314456ccbf67dad16b6d18c9 /data/lib | |
parent | 90d0d68ce7b831527bc87eb9e6c4e37af39b8f9b (diff) | |
download | bugzilla-triage-978daa50280099edad980d49aa0a4dd86647846a.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.js | 1 |
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"); }; |