You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
piomint/app/static/app/js/welcomeControl.js

16 lines
600 B

/* ALLES RUND UM DIE WILLKOMMENSMELDUNG */
function setAllOk() {
document.getElementById('welcome_content').style.display = 'none';
document.getElementById('dashboard').classList.remove('d-none');
document.getElementById('refresh_icon').classList.remove('d-none')
document.getElementById('settings_icon').classList.remove('d-none')
}
document.getElementById("allOk").addEventListener('click', function(){
localStorage.setItem('infoReadAllRead', "true");
setAllOk();
})
const ReadingState = localStorage.getItem('infoReadAllRead');
if (ReadingState === "true") {setAllOk();}

Powered by TurnKey Linux.