aboutsummaryrefslogtreecommitdiff
path: root/web/script/dangerbutton.ts
blob: aabcdb901b4a5966012d0e021cb91013b487bdb4 (plain)
1
2
3
4
5
6
7
8
9
globalThis.addEventListener("DOMContentLoaded", () => {
    document.querySelectorAll("input.danger").forEach(el => {
        el.addEventListener("click", ev => {
            if (!confirm(`Really ${(el as HTMLInputElement).value}?`)) {
                ev.preventDefault()
            }
        })
    })
})