Skip to content

Commit

Permalink
faq.html: fix rendering.
Browse files Browse the repository at this point in the history
In particular, lists weren't being unhidden.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
  • Loading branch information
rustyrussell committed Nov 26, 2014
1 parent f139b33 commit a22410f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/faq.html
Expand Up @@ -9,7 +9,7 @@
<script src="js/jquery-1.11.0.min.js"></script>
<script>
function more(event) {
var elem = $(event.target).parents("div").find("p.details");
var elem = $(event.target).parents("div").find(".details");
var display = elem.css("display");
display = display == "none" ? "block" : "none";
elem.css("display", display);
Expand Down

0 comments on commit a22410f

Please sign in to comment.