Skip to content

Commit 0727af8

Browse files
committedOct 12, 2018
update
1 parent b59e3ba commit 0727af8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎js/customscripts.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ $(function() {
3333
(function toc() {
3434
var toc = $('#my_toc');
3535
var path = window.location.pathname;
36-
$('.content h2').each(function() {
36+
$('.content h2, .content h3').each(function() {
3737
var section = $(this);
3838
var url = path + '#' + section.attr('id');
3939
toc.append($('<li><a href="' + url + '" class="nomunge">' + section.text() + '</a></li>'));

0 commit comments

Comments
 (0)
Please sign in to comment.