regenerate docs

This commit is contained in:
goat 2020-03-11 21:54:11 +09:00
parent 4dfbcb69d6
commit 2584122e4e
692 changed files with 205684 additions and 1167 deletions

View file

@ -456,6 +456,16 @@ $(function () {
return;
}
tocFilterClearButton.fadeIn();
// set all parent nodes status
$('#toc li>a').filter(function (i, e) {
return $(e).siblings().length > 0
}).each(function (i, anchor) {
var parent = $(anchor).parent();
parent.addClass(hide);
parent.removeClass(show);
parent.removeClass(filtered);
})
// Get leaf nodes
$('#toc li>a').filter(function (i, e) {
@ -1162,7 +1172,7 @@ $(function () {
$(window).on('hashchange', scrollToCurrent);
$(window).load(function () {
$(window).on('load', function () {
// scroll to the anchor if present, offset by the header
scrollToCurrent();
});