An electron-based WIP aesthetic file explorer ^^
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.
 
 
 
FileKade/scripts/toast/removetoast.js

5 lines
198 B

module.exports = (toast) => {
toast.classList.remove('toast-entering');
toast.classList.add('toast-leaving');
setTimeout(() => {toast.onanimationend = () => {toast.remove();};}, 100);
};