AngularJS 1.2 で、親アニメーションを使用すると、子アニメーションが機能しません。
をコメントアウトするapp.animation('.parent', function () { .. }
と、子アニメーションが正しく開始されます。
親アニメーションと子アニメーションを同時に動作させるにはどうすればよいですか?
HTML:
<button ng-click="anim.toggleParent()">reveal parent</button>
<button ng-click="anim.toggleChild()">reveal child</button>
<div class="parent" ng-if="!anim.showParent">
<div class="child" ng-if="!anim.showChild">
</div>
</div>
JS:
app.animation('.parent', function () {
return {
// ...
};
});
// this doesn't work with parent animation =(
app.animation('.child', function () {
return {
// ...
};
});