This commit is contained in:
2022-12-15 12:50:33 +02:00
parent 2650ccf008
commit 0bfce8e96f
5 changed files with 11 additions and 7 deletions

View File

@ -22,7 +22,7 @@
const notification = document.querySelector('#flash')
if (notification) {
setInterval(function() {
notification.classList.add('collapse');
notification.classList.add('hidden');
}, 5000);
}
}