Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(toc): fix heading selector #55

Merged
merged 1 commit into from
Feb 27, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions indico_themes_canonical/static/js/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,10 +168,10 @@ function renderCounts(counts, table) {
}
}

/* Renders a table of contents based on the h2 and h3 elements in the page content */
/* Renders a table of contents based on the heading elements in the page content */
function renderTableOfContents() {
const content = document.querySelector(".page-content");
const headings = content.querySelectorAll("h2, h3", "h4");
const headings = content.querySelectorAll("h2, h3, h4");
// Do not render if there is no content body or less than three headings
if (!content || headings.length <= 3) {
return;
Expand Down
Loading