diff options
author | Alex Xu <alex_y_xu@yahoo.ca> | 2013-06-24 17:23:46 -0400 |
---|---|---|
committer | Alex Xu <alex_y_xu@yahoo.ca> | 2013-06-24 17:23:46 -0400 |
commit | 1191d7ffc795995d68435af715f0eaa43dff724b (patch) | |
tree | ab0a510f68aff7fbc0b077d3693bfb400fdc1a32 /www/js | |
parent | 635dedf1e43fbb8ae7969ad1b9265002ea5190c3 (diff) | |
download | html5ks-1191d7ffc795995d68435af715f0eaa43dff724b.tar.xz html5ks-1191d7ffc795995d68435af715f0eaa43dff724b.zip |
aaaaagh noscript workaround
Diffstat (limited to 'www/js')
-rw-r--r-- | www/js/html5ks.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/js/html5ks.js b/www/js/html5ks.js index ade740f..4c87763 100644 --- a/www/js/html5ks.js +++ b/www/js/html5ks.js @@ -79,7 +79,7 @@ var warns = document.getElementById("warns").children; for (var i = 0; i < warns.length; i++) { if (window.getComputedStyle(warns[i]).getPropertyValue("display") !== "none") { - warn.style.display = "block"; + warn.style.visibility = "visible"; } } } |