Skip to content

Commit 57196b3

Browse files
committed
Fix for #225 from @davidbeermann
1 parent 095d8f1 commit 57196b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

static/javascript/navbar.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ $(document).ready(function() {
22

33
// Handle selecting & unselecting chapter groups in the sidebar
44
var $selectedGroup = $('.group.selected');
5-
$(".group").click(function() {
5+
$(".group").click(function(event) {
66
// Pull out the element that to which the click event is bound (li.group)
77
var newSelected = event.currentTarget;
88

0 commit comments

Comments
 (0)