changeset 13:d1f83e9c0791

Fixed hints to work on safari.
author Atul Varma <varmaa@toolness.com>
date Mon, 30 Mar 2009 23:58:52 -0700
parents d0baeac9a413
children 9a759b8be515
files index.css open-web-challenges.js
diffstat 2 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/index.css	Mon Mar 30 23:39:37 2009 -0700
+++ b/index.css	Mon Mar 30 23:58:52 2009 -0700
@@ -21,6 +21,10 @@
     font-weight: normal;
 }
 
+.hints p {
+    display: none;
+}
+
 .hint-button {
     font-style: italic;
     padding: 2em;
--- a/open-web-challenges.js	Mon Mar 30 23:39:37 2009 -0700
+++ b/open-web-challenges.js	Mon Mar 30 23:58:52 2009 -0700
@@ -29,7 +29,6 @@
 
     var hints = $('<div class="hints"></div>');
     hints.append(challenge.find('.hints').clone());
-    hints.find('p').hide();
     current.append(this._makeHintButton(hints));
     current.append(hints);