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
Not sure if the project is still active, but here goes.
I want to dismiss the notification when the user clicks on it. There is a timer in the background, and if the user doesn't click on the notification, it's dismissed once time runs out, I just want to give more control to the end user.
hide() (or even fadeOut()) do not trigger properly - there's no fadeout, but the message is removed after a certain number of ms. Is there a native way of doing this? Something along the lines of:
function shownoty() {
....
$('.fadeInRight,.fadeOutRight').on('click',function(e){
myNoty.close();
});
}
but without removing all of the notifications currently on screen. Can I attach a custom class or an ID to the notification?
The text was updated successfully, but these errors were encountered:
Not sure if the project is still active, but here goes.
I want to dismiss the notification when the user clicks on it. There is a timer in the background, and if the user doesn't click on the notification, it's dismissed once time runs out, I just want to give more control to the end user.
While I can do something like:
hide()
(or evenfadeOut()
) do not trigger properly - there's no fadeout, but the message is removed after a certain number of ms. Is there a native way of doing this? Something along the lines of:but without removing all of the notifications currently on screen. Can I attach a custom class or an ID to the notification?
The text was updated successfully, but these errors were encountered: