(animationEvent, element, className, calculationDecorator)
| 1521 | } |
| 1522 | |
| 1523 | function animateBefore(animationEvent, element, className, calculationDecorator) { |
| 1524 | if(animateSetup(animationEvent, element, className, calculationDecorator)) { |
| 1525 | return function(cancelled) { |
| 1526 | cancelled && animateClose(element, className); |
| 1527 | }; |
| 1528 | } |
| 1529 | } |
| 1530 | |
| 1531 | function animateAfter(animationEvent, element, className, afterAnimationComplete) { |
| 1532 | if(element.data(NG_ANIMATE_CSS_DATA_KEY)) { |
no test coverage detected