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
element housing the notification message is not always removed from the DOM after it is faded out (i.e. after the opacity is set to 0). This results in the transparent notification message obscuring part of the screen, preventing it from receiving mouse clicks or touch events.
transitionend event isn't always sent by the browser - an instance may be when the transition is interrupted by another process. This means that the element may not get removed where the event isn't fired.
The text was updated successfully, but these errors were encountered:
Please find attached a pull request #56 that fixes this issue.
You can replicate the issue by setting a breakpoint in $scope.close = function() {... and then manually closing the element and then stepping over the following line, which suppresses the transitionend event:
I've noticed an intermittent issue where
The problem seems to be this code:
transitionend
event isn't always sent by the browser - an instance may be when the transition is interrupted by another process. This means that the element may not get removed where the event isn't fired.The text was updated successfully, but these errors were encountered: