-
Notifications
You must be signed in to change notification settings - Fork 27.4k
Animation not working with 1.4.x and ui-router: ng-hide-add and ng-hide-remove classes are not generated #12583
Comments
Is |
Look at this example we have an app where the rootElement is on https://angular-ui.github.io/ui-router/sample/#/
See how it's the HTML element? How did your code end up being situated to where the view was created? Could you share your some code to show how your app is configured? |
I'll try to create a plunker and share it with you |
starting to work on plunker, but until I have it I can answer you question: in our code the ng-app directive is not on the html element but on the div element that has the ui-view directive. |
Here you have the plunker: http://plnkr.co/edit/uB94enS5J2AgI0fPiePM?p=preview Put the following two breakpoints in angular-animate.js:
Refresh the page
Click on the "Test Animation" button
This behavior is a bit different than what I see in our app. I our app the animation doesn't happen even when debugging. I think that here it works when debugging because of the plunker environment. |
Moving the ui-view directive from the ng-app element to its own element workarounds the ngAnimate issue. The comment is inserted now in front of the element and is not affected. The animation works now.
Using this Instead of this |
@ndaian wait how does the workaround work, i have exactly the same problem, but didnt get it to work. |
Same problem here on angular 1.4.4, any UI View animations just stopped working, pretty sure this is not an |
@ndaian would you mind testing against these files to see if things work: |
I've just had a similar issue however the problem was with the following row: Just want to put it out here for anyone else who might have this problem. |
Is this still an issue? In 1.4.7 there was a fix to the $$body service. |
I am using the latest AngularJS 1.5.0beta + UIRouter 1.4.7. The issue doesn't repro for me. |
@ndaian what about you? |
i started having this issue as well. transitions between states are not adding classes from nganimate. any updates on progress? |
This bug still repros in this plnkr (#12583 (comment)) with the current snapshot. |
having the same problem, but on ng-switch-when. using 1.4.8 |
I had a look at this and it seems this happens because ngView / uiView are transclude: element directives, which means they replace the element on which they are with a comment node. But I'm not yet sure how the $rootElement value is actually replaced by the comment node. |
- Note that bootstrapping on elements with transclusion directives is dangerous and not recommended. - group info on limitations, and add them to the guide Closes angular#11421 Closes angular#13572 Closes angular#12583
- Note that bootstrapping on elements with transclusion directives is dangerous and not recommended. - group info on limitations, and add them to the guide Closes angular#11421 Closes angular#13572 Closes angular#12583
- Note that bootstrapping on elements with transclusion directives is dangerous and not recommended. - group info on limitations, and add them to the guide Closes angular#11421 Closes angular#13572 Closes angular#12583
My issue seems similar with #12267, I left a comment there but since that issue is closed, people might not read it.
@matsko worked on that issue.
ng-hide-add and ng-hide-remove classes are not generated. I am not using Material.
Debugging ngAnimate I noticed that all animations are skipped because:
The element $rootElement points to is a comment and it is inserted by the ui-view directive which is present on the angular root element.
"ui-view" is a directive belonging to https://github.com/angular-ui/ui-router.
When ngAnimate is initialized $rootElement receives the correct value but probably when ui-router inserts its comment right before the angular root element, $rootElement is not updated. So when the animation happens, $rootElement points to instead of
Because 'areAnimationsAllowed' function does not find the angular root element, it retursn false and all animations are skipped.
The text was updated successfully, but these errors were encountered: