This commit is contained in:
Marc Beninca 2023-06-30 19:58:43 +02:00
parent 683d799c04
commit aa632bfd84
2 changed files with 29 additions and 28 deletions

28
test.js Normal file
View file

@ -0,0 +1,28 @@
function check(tab) {
const tabs = tab.split('/')
let path = 'tab'
for (tab of tabs) {
path = `${path}/${tab}`
document.getElementById(path).checked = true
}
}
function push(tab) {
window.history.pushState(null, null, `?tab=${tab}`)
}
function update(id) {
const tab = id.split('/').slice(1).join('/')
push(tab)
}
function main() {
let tab = (new URL(document.location)).searchParams.get('tab')
if (tab) {
check(tab)
} else {
tab = '1/1'
check(tab)
push(tab)
}
}