Author: nextgens
Date: 2007-12-16 21:59:48 +0000 (Sun, 16 Dec 2007)
New Revision: 16620
Modified:
trunk/website/index.php
trunk/website/style.css
Log:
website: inverse the logic so that people not using JS will still see the
content
Modified: trunk/website/index.php
===================================================================
--- trunk/website/index.php 2007-12-16 21:51:28 UTC (rev 16619)
+++ trunk/website/index.php 2007-12-16 21:59:48 UTC (rev 16620)
@@ -77,7 +77,8 @@
<div class="hideit">Send spam to <a href="mailto:catchme at
freenetproject.org">catchme at freenetproject.org</a> ! :)</div>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script><script type="text/javascript">_uacct =
"UA-354970-1";urchinTracker();</script>
+<script language="javascript">
+ toggleLayer("hideit");
+</script>
</body>
</html>
-
-
Modified: trunk/website/style.css
===================================================================
--- trunk/website/style.css 2007-12-16 21:51:28 UTC (rev 16619)
+++ trunk/website/style.css 2007-12-16 21:59:48 UTC (rev 16620)
@@ -53,7 +53,7 @@
a.menu:visited { color: #000000; text-decoration: none }
a.menu:hover { color: #000000; text-decoration: none }
-div.hideit { display:none; }
+div.hideit { display:block; }
pre {
background-color: #eee;
@@ -98,4 +98,4 @@
.paper-text { padding: 10px 0px 0px 30px; }
.videoimage { vertical-align: top; padding-top:14px; padding-left:7px;}
-.pdfimage { vertical-align: top; padding-top:14px;}
\ No newline at end of file
+.pdfimage { vertical-align: top; padding-top:14px;}