hubl/src/scripts/timeout-goeswrong.js

5 lines
178 B
JavaScript
Raw Normal View History

2021-02-17 17:40:12 +00:00
setTimeout(() => {
if(document.querySelector('.loggedIn').style.display != 'none') {
document.querySelector('#something-goes-wrong').removeAttribute('hidden')
}
}, 5000);