remove scrolling

pull/4898/head
Valentin Maerten 1 month ago
parent 2bccb422ca
commit dfc691c6db
No known key found for this signature in database
GPG Key ID: 2F8E54DDF815C341

@ -1,6 +1,5 @@
import { inBrowser, onContentUpdated } from 'vitepress'
const SCROLL_OPTIONS: ScrollIntoViewOptions = { block: 'nearest' }
const codeGroupCache = new Map<string, HTMLElement[]>()
export function useCodeGroups() {
@ -38,7 +37,6 @@ export function useCodeGroups() {
const label = group?.querySelector(`label[for="${el.id}"]`)
if (!label) return
// Activate the clicked tab
if (!activateTab(group, el)) return
label.scrollIntoView({ block: 'nearest' })
@ -48,10 +46,7 @@ export function useCodeGroups() {
const tabTitle = label.getAttribute('data-title')?.toLowerCase()
if (groupKey && tabTitle) {
// Synchronize all other code groups with the same key
syncCodeGroupsByKeyAndValue(groupKey, tabTitle, group)
// Update URL query parameter with key=value format
updateUrl(groupKey, tabTitle)
}
}
@ -159,11 +154,4 @@ function handleQueryParamNavigation() {
}
}
}
// Scroll to the first matching group
if (matches.length > 0) {
const firstMatchGroup = matches[0]
const firstLabel = firstMatchGroup.querySelector('label[data-title]')
firstLabel?.scrollIntoView(SCROLL_OPTIONS)
}
}

Loading…
Cancel
Save