From 1191d7ffc795995d68435af715f0eaa43dff724b Mon Sep 17 00:00:00 2001 From: Alex Xu Date: Mon, 24 Jun 2013 17:23:46 -0400 Subject: aaaaagh noscript workaround --- www/css/index.css | 2 +- www/js/html5ks.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'www') diff --git a/www/css/index.css b/www/css/index.css index f300350..9a96f3b 100644 --- a/www/css/index.css +++ b/www/css/index.css @@ -76,7 +76,7 @@ body { z-index: 9; } #warn-container { - display: none; + visibility: hidden; cursor: auto; } #warn { 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"; } } } -- cgit v1.2.3-54-g00ecf