(animationEvent, element, className, afterAnimationComplete, styles)
| 1998 | } |
| 1999 | |
| 2000 | function animateAfter(animationEvent, element, className, afterAnimationComplete, styles) { |
| 2001 | if (element.data(NG_ANIMATE_CSS_DATA_KEY)) { |
| 2002 | return animateRun(animationEvent, element, className, afterAnimationComplete, styles); |
| 2003 | } else { |
| 2004 | animateClose(element, className); |
| 2005 | afterAnimationComplete(); |
| 2006 | } |
| 2007 | } |
| 2008 | |
| 2009 | function animate(animationEvent, element, className, animationComplete, options) { |
| 2010 | //If the animateSetup function doesn't bother returning a |
no test coverage detected