docs: Revert auto expand flame section on documentation home page (#1824)

This commit is contained in:
Lukas Klingsbo
2022-07-27 23:39:50 +02:00
committed by GitHub
parent f0b883be98
commit 21b06a0fc0
2 changed files with 1 additions and 22 deletions

View File

@ -1,21 +0,0 @@
// Auto expand the first expandable node ("flame") when loaded.
window.addEventListener('load', (_event) => {
expandFirstOnHome();
});
/**
* This method expands the first expandable node on the home page.
*
* If the current page is not the home page, this method does nothing.
*/
// When the path name ends with index.html or an empty string, it is home page.
function expandFirstOnHome() {
const parts = location.pathname.split('/');
const lastPart = parts[parts.length - 1];
const isHomePage = (lastPart == '') || (lastPart == 'index.html');
if (isHomePage) {
// expand the first expandable node in the toctree
$('li.toctree-l1').has('ul').first().addClass('current');
}
}