When the dialog is closed and removed from the document body while the notification is still animating (because of the 5 sec timeout), the next time I mouse click anywhere in the application, this error message shows up:
So after the dialog is removed, there's probably still a mouse event handler trying to reference the notification: window.addEventListener._windowPointerDownListener.
All in all it's not that big of a deal, as in my case the notification shouldn't be animating (closing) when I remove the dialog it is in. But thought I'd mention it anyway.
Ran into this error message when doing the following:
dialog
element that contains anx-notification
, among other things, is added to the document body.When the dialog is closed and removed from the document body while the notification is still animating (because of the 5 sec timeout), the next time I mouse click anywhere in the application, this error message shows up:
So after the dialog is removed, there's probably still a mouse event handler trying to reference the notification:
window.addEventListener._windowPointerDownListener
.All in all it's not that big of a deal, as in my case the notification shouldn't be animating (closing) when I remove the dialog it is in. But thought I'd mention it anyway.