When a parent animation is in place, child animations do not get triggered.
In angular-animate.js line no 567
```
//skip the animation if animations are disabled, a parent is already being animated,
//the element is not currently attached to the document body or then completely close
//the animation if any matching animations are not found at all.
//NOTE: IE8 + IE9 should close properly (run closeAnimation()) in case a NO animation is not found.
if (animationsDisabled(element, parentElement) || matches.length === 0) {
domOperation();
closeAnimation();
return;
}
```
Does the above means that the child animations would be ignored if parent has a ng-animate tag?
Pardon my ignorance if this is not an issue and works as expected.
Any workarounds would be helpful.