diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-03-30 02:53:18 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-06-05 14:44:01 +0200 |
commit | 7821fb333377cbd3fce916c79e232ece6c8903e6 (patch) | |
tree | 29d7c74c8ba2dd6bfcc8e37dd2d493c31924a1ba /data/lib/addNewLinks.js | |
parent | 8bf1efb83b09258433af73c7fa46edfe84f29c68 (diff) | |
download | bugzilla-triage-7821fb333377cbd3fce916c79e232ece6c8903e6.tar.gz |
Add logging to find out what's going on the computed style.
Diffstat (limited to 'data/lib/addNewLinks.js')
-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"); }; |