-
Notifications
You must be signed in to change notification settings - Fork 27.4k
Angular-animate.js / onAnimationProgress(event) function null error IE #10387
Comments
that would affect non-IE browsers too. Can you provide a minimal reproduction please so that we can write a test case and land a fix? |
@Jamertunes what is the AngularJS version you are using? I can't find any reference to |
@caitp lol, there was a typo in the original bug report:
and I've copied it blindly when grepping :-/ Sorry for the noise |
Sorry for the typo. While moving around a page in IE, the event parameter appears to be populating properly. I can reproduce the error only when swapping out page content. When the page changes, the error occurs. The error is being generated in Visual Studio prior to the content loading. Angular version v1.2.21. |
but could you please create a runnable example, @Jamertunes --- so that we can reproduce this. |
Having the same issue after upgrading to 1.4 from 1.3 (wasn't present before). In our case, similar to your repo jsfiddle, it's a bootstrap modal button inside an element that has animations on it. We have another situation though where it's a bootstrap toggle that causes it as well. If you put a prevent default in the onclick for the buttons, then it goes away as well. Hope that helps narrow it down. |
Having the same issue after upgrading from 1.3 to 1.4.6. The error occurs when moving over a hyperlink that contains a callout/title message. Issue: Unable to get property 'toFixed' of undefined or null reference. The error did not occur in the previous version. Not sure how the onAnimationProgress function is being invoked. A solution would be greatly appreciated, a clue on how this method is being invoked. |
I'm getting this issue specifically on IE11 during a bootstrap carousel transition between slides. Running 1.4.7. Same error as rsigmond on the same method. I bump the document mode to IE10 and it goes away. I'm not seeing the error on chrome. |
I have tried to understand when this happens, and this is what I've come up with so far: Bootstrap has a function named
When an event is triggered from
Note that when I have only seen the erroneous behavior in IE (11) and not in Chrome. The reason is that in Chrome
So in summary:
|
I use the following directive to disable ngAnimate on elements that might cause this error to be thrown (for example, bootstrap carousel items).
|
@provegard Thanks for the investigation. Do you have an idea how angular should fix this? Or is bootstrap doing something here it probably shouldn't? |
@Narretz IMO angular should do better input validation, i.e. ignore the event if it isn't of the expected type. I don't know why Bootstrap emulates transitionend but I suppose there is a good reason. :) |
Previously the transition/animation end events were not removed when the animation was closed. This normally didn't matter, because the close function knows the animation are closed and won't do work twice. However, the listeners themselves do computation that could fail when the event was missing some data, for example when the event was triggered instead of natural. Closes angular#10387
Previously the transition/animation end events were not removed when the animation was closed. This normally didn't matter, because the close function knows the animation are closed and won't do work twice. However, the listeners themselves do computation that could fail when the event was missing some data, for example when the event was triggered instead of natural. Closes angular#10387
Previously the transition/animation end events were not removed when the animation was closed. This normally didn't matter, because the close function knows the animations are closed and won't do work twice. However, the listeners themselves do computation that could fail when the event was missing some data, for example when the event was triggered instead of natural. Closes angular#10387
Previously the transition/animation end events were not removed when the animation was closed. This normally didn't matter, because the close function knows the animations are closed and won't do work twice. However, the listeners themselves do computation that could fail when the event was missing some data, for example when the event was triggered instead of natural. Closes angular#10387
Previously the transition/animation end events were not removed when the animation was closed. This normally didn't matter, because the close function knows the animations are closed and won't do work twice. However, the listeners themselves do computation that could fail when the event was missing some data, for example when the event was triggered instead of natural. Closes angular#10387
Previously the transition/animation end events were not removed when the animation was closed. This normally didn't matter, because the close function knows the animations are closed and won't do work twice. However, the listeners themselves do computation that could fail when the event was missing some data, for example when the event was triggered instead of natural. Closes angular#10387
Previously the transition/animation end events were not removed when the animation was closed. This normally didn't matter, because the close function knows the animations are closed and won't do work twice. However, the listeners themselves do computation that could fail when the event was missing some data, for example when the event was triggered instead of natural. Closes #10387
Browser: IE 9, 10, 11
Angular-Animate Version: v1.2.21
Issue: ev.elaspedTime is null and calling the toFixed function on this causes an exception.
The text was updated successfully, but these errors were encountered: