Skip to content

Commit

Permalink
Missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisnyman committed Jul 31, 2018
1 parent 253d780 commit fd6bf64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/assets/javascripts/_modules/collapsible-navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
var $topLevelItem = $($topLevelItems[i]);
var $heading = $topLevelItem.find('> a');
var $listing = $topLevelItem.find('> ul');
var id = 'toc-' + $heading.text().toLowerCase().replace(' ', '-')
var id = 'toc-' + $heading.text().toLowerCase().replace(' ', '-');
// Only add collapsible functionality if there are children.
if ($listing.length == 0) {
continue;
Expand Down

0 comments on commit fd6bf64

Please sign in to comment.