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
To destroy all you use: iziToast.destroy();
I tried: this.$toast.destroy(); worked
To hide an specific toast you must reference it with a class and use: var toast = document.querySelector('.iziToast'); // Selector of your toast iziToast.hide({}, toast); // Or make new settings iziToast.hide({ transitionOut: 'fadeOutUp' }, toast); could not make work
As the title says, how can I close a specific toast or all of them if I need?
I've tried
this.$toast.remove();
this.$toast.hide();
I've tried searching inside the izi-toast.js for the function but there doesn't seem to be one
The text was updated successfully, but these errors were encountered: