diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-06-09 16:48:30 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-06-09 17:53:28 -0300 |
commit | 7e4c8e0415948fb62bf2ff319fd5cdfedee0dfb7 (patch) | |
tree | f905774416234739ecff36f11c81f8d4bba8df95 /src/static/js | |
parent | 54c2c6e5116ebb90922b30cc8fcd7309cd0dcb42 (diff) |
content, client: generateContentHeading: stickyTitle slot
Diffstat (limited to 'src/static/js')
-rw-r--r-- | src/static/js/client.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/static/js/client.js b/src/static/js/client.js index 8b470832..1911c6f7 100644 --- a/src/static/js/client.js +++ b/src/static/js/client.js @@ -2706,9 +2706,9 @@ function updateStickySubheadingContent(index) { } const textContainer = - closestHeading.querySelector('.content-heading-main-title') - // Just for compatibility with older builds of the site. - ?? closestHeading; + templateContent( + closestHeading.querySelector('.content-heading-sticky-title')) ?? + closestHeading.querySelector('.content-heading-main-title'); for (const child of textContainer.childNodes) { if (child.tagName === 'A') { |