notification is now emptied after hiding it

This commit is contained in:
Jack 2020-08-19 19:42:00 +01:00
parent 4c44ccec4a
commit e520dea8bc

View file

@ -135,7 +135,10 @@ function showNotification(text, time) {
top: `-${noti.outerHeight()}px`,
},
250,
"swing"
"swing",
() => {
noti.text("");
}
);
}
);