pedagogy: uv autofill finishing touches

This commit is contained in:
tleb
2019-10-24 14:18:29 +02:00
parent 1c0d15ba2a
commit 5cc7eff94f
4 changed files with 26 additions and 14 deletions

View File

@ -47,6 +47,13 @@ function createQuickNotif(msg) {
document.getElementById('quick_notif').appendChild(el)
}
function deleteQuickNotifs() {
const el = document.getElementById('quick_notif')
while (el.firstChild) {
el.removeChild(el.firstChild)
}
}
function display_notif() {
$('#header_notif').toggle().parent().toggleClass("white");
}