This commit is contained in:
Marc Beninca 2023-06-30 22:07:10 +02:00
parent eec7f6adc0
commit 7decae3625
3 changed files with 14 additions and 3 deletions

View file

@ -6,16 +6,13 @@ function check(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) {
@ -26,3 +23,7 @@ function main() {
push(tab)
}
}
function swap() {
document.body.classList.toggle('dark')
}