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/UpdateInfoControl.js

17 lines
782 B

/* ALLES RUND UM DIE UPDATE INFO MELDUNG */
function setUpdateOk() {
document.getElementById('update_content').style.display = 'none';
document.getElementById('dashboard').classList.remove('d-none');
document.getElementById('refresh_icon').classList.remove('d-none')
document.getElementById('share_icon').classList.remove('d-none')
document.getElementById('settings_icon').classList.remove('d-none')
}
document.getElementById("allUpdateOk").addEventListener('click', function(){
localStorage.setItem('UpdateInfoRead', document.getElementById('versionnumber').value);
setUpdateOk();
})
const UpdateInfoReadingState = localStorage.getItem('UpdateInfoRead');
if (UpdateInfoReadingState === document.getElementById('versionnumber').value) {setUpdateOk();}

Powered by TurnKey Linux.