Skip to content

Commit a22410f

Browse files
committedNov 26, 2014
faq.html: fix rendering.
In particular, lists weren't being unhidden. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
1 parent f139b33 commit a22410f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎web/faq.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<script src="js/jquery-1.11.0.min.js"></script>
1010
<script>
1111
function more(event) {
12-
var elem = $(event.target).parents("div").find("p.details");
12+
var elem = $(event.target).parents("div").find(".details");
1313
var display = elem.css("display");
1414
display = display == "none" ? "block" : "none";
1515
elem.css("display", display);

0 commit comments

Comments
 (0)
Please sign in to comment.