Currently when an element is hidden via ng-hide, first the element gets display="none" then the animation happens. Is there a way for display="none" to be added once the animation is finished?
Asked
Active
Viewed 1,714 times
1 Answers
3
The common suggestion is to add a display: block !important
rule for the .ng-hide-add , .ng-hide-remove
classes. The add and remove versions of hide class are added by ng-animate
and removed after the relevant animation.

DRobinson
- 4,441
- 22
- 31