You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 17, 2026. It is now read-only.
Whenever I call my toast from a function it's somehow not displayed, DOM also does not change. You can hear the sound though.
Only when it's called a second time it shows.
functionshowToast(type,title,message){toasty[type]({title: title,msg: message});}functioncheckExpired(){showToast("warning","Warning","Your session is about to expire. Click here to stay logged in!");}setInterval(checkExpired,5000);
When I call it from the ng-click directive in the view it works fine every time.