summaryrefslogtreecommitdiff
path: root/static/nick-lift.js
blob: 343608a7de5acb06b24af7521930fb72ce94cd89 (plain)
1
2
3
4
5
6
7
var nickTimeout
Array.from(document.getElementsByClassName('kysNick')).forEach( (a) => {
    a.addEventListener('mousedown', (event) => { nickTimeout = setTimeout( 
            () => { document.location = '/#nick_reset'}, 5000) })
    a.addEventListener('mouseup', (event) => { clearTimeout (nickTimeout) })
    a.addEventListener('mouseout', (event) => { clearTimeout (nickTimeout) })
})