hubl/src/scripts/timeout-goeswrong.js

5 lines
185 B
JavaScript
Raw Normal View History

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