aboutsummaryrefslogtreecommitdiff
path: root/docs/base-css.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/base-css.html')
-rw-r--r--docs/base-css.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/base-css.html b/docs/base-css.html
index e087432fe..efdc1e271 100644
--- a/docs/base-css.html
+++ b/docs/base-css.html
@@ -1122,9 +1122,9 @@
<script type="text/javascript">
// NOT FINAL BY ANY MEANS, JUST MAH JANK CODE BRO
$(document).ready(function() {
- $('.nav .active a').click(function(e) {
+ $('.nav .active').click(function(e) {
e.preventDefault();
- $(this).parent().siblings().toggle();
+ $(this).siblings().toggle();
});
});
</script>