UNPKG

alpinejs-notify

Version:

Simple notifications in your projects using Alpine JS 🙋‍♀️

19 lines (16 loc) 450 B
export function handleAutoRemove(notificationComponent, autoRemove) { if (typeof autoRemove === 'boolean') { notificationComponent.addEventListener('animationend', function () { if ( JSON.parse(notificationComponent.getAttribute('data-notify-show')) === false ) { notificationComponent.remove() } }) return } setTimeout(function () { notificationComponent.remove() }, autoRemove) }