How can I retrieve the promise from this animation from any location in my code?
angular.module('module', ['ngAnimate'])
.animation('.notification', ['$animateCss', function($animateCss) {
return {
enter : function(element, done) {
return $animateCss(element, {
// Animation options
}
}
}
);
The animation is triggered succesfully using something like an ng-if
on a dom element.
<div class="notification" ng-if="notifier.active">...</div>
How can I get the promise without manually invoking the enter method?
Create a new promise and make it available immediately using the
promise
property in the returned object, but don't resolve it until you call the enter function and the animation is finished. More information here.