window.addEventListener('load', function() {
document.querySelectorAll('.chapter-item').forEach(function(item) {
item.classList.add('expanded');
});
document.querySelectorAll('a[href^="./"]').forEach(function(link) {
if (link.href.indexOf('#') === -1 && !link.href.endsWith('.html')) {
link.href = link.href + '.html';
}
});
setTimeout(function() {
const path = window.location.pathname;
document.querySelectorAll('.sidebar-scrollbox a').forEach(function(link) {
if (link.href.includes(path)) {
link.classList.add('active');
link.parentElement.classList.add('active');
}
});
}, 100);
});