-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscripts.html
More file actions
27 lines (26 loc) · 931 Bytes
/
scripts.html
File metadata and controls
27 lines (26 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<script src="js/jquery.cookie.js"></script>
{% case site.toc.type %}
{% when 'plugin' %}
<script src="js/jquery.tocLight.js"></script>
<script type="text/javascript">
$(function() {
$.toc.clickHideButton({saveShowStatus:true});
});
</script>
{% when 'js' %}
{% if page.noToc == null || page.noToc == false %}
<script src="js/jquery.toc.js"></script>
<script type="text/javascript">
$(function() {
$('#main').toc({
{% if site.minItemsToShowToc != null %}
minItemsToShowToc: {{ site.minItemsToShowToc }},
{% endif %}
renderIn: '#toc-container',
formatName: 'innerText',
anchorPrefix: '',
});
});
</script>
{% endif %}
{% endcase %}