Skip to content
Open
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
11 changes: 11 additions & 0 deletions docs/pages/TSL.html
Original file line number Diff line number Diff line change
Expand Up @@ -12092,6 +12092,17 @@ <h3 class="name name-method" id="traverseCallback" translate="no">.<a href="#tra
</div>
</article>
</section>
<script>
(function() {
// Safari bug: hashes like "#TSL.Break" don't match element ids like "Break"
const rawHash = location.hash.slice(1);
if (rawHash.includes('.')) {
const id = rawHash.split('.').pop();
const el = document.getElementById(id);
if (el) el.scrollIntoView();
}
})();
</script>
<script src="../scripts/linenumber.js"></script>
<script src="../scripts/page.js"></script>
</body>
Expand Down