This repository was archived by the owner on Apr 12, 2024. It is now read-only.
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Animate crash: Cannot read property 'runner' of undefined in 1.4.0 #11992
Closed
Description
TypeError: Cannot read property 'runner' of undefined
at angular-animate.js:2330
at forEach (angular.js:336)
at closeChildAnimations (angular-animate.js:2325)
at queueAnimation (angular-animate.js:2148)
at Object.$$AnimateQueueProvider.$get.push (angular-animate.js:2040)
at Object.$AnimateProvider.$get.leave (angular.js:5200)
at cleanupLastView (angular-route.js:913)
at angular-route.js:942
at publicLinkFn (angular.js:7387)
at $get.boundTranscludeFn (angular.js:7533)`
I get it when using it with the following CSS:
.hide-fade.ng-hide-add, .hide-fade.ng-hide-remove {
-webkit-transition:all linear 0.3s;
-moz-transition:all linear 0.3s;
-o-transition:all linear 0.3s;
transition:all linear 0.3s;
display:block!important;
}
.hide-fade.ng-hide-add.ng-hide-add-active,
.hide-fade.ng-hide-remove {
opacity:0;
}
.hide-fade.ng-hide-add,
.hide-fade.ng-hide-remove.ng-hide-remove-active {
opacity:1;
}
Does not happen while using 1.3.15