(animationEvent, element, className, afterAnimationComplete)
| 1529 | } |
| 1530 | |
| 1531 | function animateAfter(animationEvent, element, className, afterAnimationComplete) { |
| 1532 | if(element.data(NG_ANIMATE_CSS_DATA_KEY)) { |
| 1533 | return animateRun(animationEvent, element, className, afterAnimationComplete); |
| 1534 | } else { |
| 1535 | animateClose(element, className); |
| 1536 | afterAnimationComplete(); |
| 1537 | } |
| 1538 | } |
| 1539 | |
| 1540 | function animate(animationEvent, element, className, animationComplete) { |
| 1541 | //If the animateSetup function doesn't bother returning a |
no test coverage detected