aboutsummaryrefslogtreecommitdiff
path: root/docs/components.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/components.html')
-rw-r--r--docs/components.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/components.html b/docs/components.html
index 049908c20..d0456cc74 100644
--- a/docs/components.html
+++ b/docs/components.html
@@ -687,9 +687,9 @@ Lorem ipsum dolar sit amet illo error <a href="#" title="below">ipsum</a> verita
<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>