mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-24 20:29:10 +00:00
14 lines
327 B
JavaScript
14 lines
327 B
JavaScript
function toc() {
|
|
toc = $( '#toc' ).tocify({
|
|
selectors: 'h1, h2',
|
|
theme: 'none',
|
|
smoothScroll: false,
|
|
showEffectSpeed: 0,
|
|
hideEffectSpeed: 180,
|
|
hashGenerator: function (text, element) {
|
|
return element.prop( 'id' );
|
|
}
|
|
}).data( 'toc-tocify' );
|
|
}
|
|
$(toc);
|