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
When a ToasterMessage is created with duration > 0, it creates a timer to hide it automatically after elapsed time. If the message is destroyed before the timout, the timer is destroyed as well. However destroy function causes uncaught exception, because the timer promise is not fulfilled:
this.destroy = function () {
if (! _fulfilled) {
reject();
}
};
The text was updated successfully, but these errors were encountered:
When a ToasterMessage is created with duration > 0, it creates a timer to hide it automatically after elapsed time. If the message is destroyed before the timout, the timer is destroyed as well. However destroy function causes uncaught exception, because the timer promise is not fulfilled:
The text was updated successfully, but these errors were encountered: