summaryrefslogtreecommitdiff
path: root/static/alert-timeout.js
blob: e20106fa4560206e9e500d15b75122788c3272ca (plain)
1
2
3
4
5
6
7
8
setInterval( () => {
    Array.from(document.getElementsByClassName('kysAlert')).forEach( (a)=>{
        a.addEventListener('click', (event) => { event.target.remove() } )
        if (a.style.transition=="opacity 2s") a.remove()
        a.style.transition="opacity 2s"
        a.style.opacity=0;
    } )
}, 5000)