toaster.success(
'Welcome welcome welcome!!',
'You are now home my friend. Welcome home my friend.', {
timeOut: 2000,
closeButton: true,
animation: {
showAnimation: 'fadeIn',
hideAnimation: 'fadeOut'
}
});
but no success.
Edit: nevermind, the trick is not to forget "animated" in the style. Issue can be closed.
toaster.success(
'Welcome welcome welcome!!',
'You are now home my friend. Welcome home my friend.', {
timeOut: 2000,
closeButton: true,
showAnimation: 'animated fadeIn',
hideAnimation: 'animated fadeOut'
});
How do I set the props of the animation? I tried:but no success.Edit: nevermind, the trick is not to forget "animated" in the style. Issue can be closed.