mirror of
https://git.sr.ht/~cadence/cloudtube
synced 2024-11-12 19:37:29 +00:00
10 lines
223 B
JavaScript
10 lines
223 B
JavaScript
|
document.addEventListener("mousedown", () => {
|
||
|
document.body.classList.remove("show-focus")
|
||
|
})
|
||
|
|
||
|
document.addEventListener("keydown", event => {
|
||
|
if (event.key === "Tab") {
|
||
|
document.body.classList.add("show-focus")
|
||
|
}
|
||
|
})
|