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
{{ message }}
This repository has been archived by the owner on Jul 30, 2018. It is now read-only.
There is a bug within WebAnimation. It relates to IE11. On rerender of a widget that includes animation in its render function, WebAnimation fails with a null pointer in its afterRender function. Seen with following animation:
As you can see animation does not work. But it does not fail with this null pointer in afterRender. I'm not sure why. Maybe because you use widget-core 0.10.0 ? With 0.9.6 it fails in afterRender within the enclosed forEach loop. "this" is not defined anymore.
@economatics the issue in the linked sandbox is that you are attempting to animate a node as it is added and removed from the DOM. This can be solved by animating root instead of content. With that modification, it works for me in both Chrome and IE11: https://codesandbox.io/s/005w38p550
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
There is a bug within WebAnimation. It relates to IE11. On rerender of a widget that includes animation in its render function, WebAnimation fails with a null pointer in its afterRender function. Seen with following animation:
The text was updated successfully, but these errors were encountered: