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

18 lines
719 B

/* ALLES RUND UM DIE WILLKOMMENSMELDUNG */
function setAllOk() {
document.getElementById('welcome_content').style.display = 'none';
if (localStorage.getItem('UpdateInfoRead') === document.getElementById('versionnumber').value) {
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.