(animationEvent, element, className, styles)
| 1990 | } |
| 1991 | |
| 1992 | function animateBefore(animationEvent, element, className, styles) { |
| 1993 | if (animateSetup(animationEvent, element, className, styles)) { |
| 1994 | return function(cancelled) { |
| 1995 | cancelled && animateClose(element, className); |
| 1996 | }; |
| 1997 | } |
| 1998 | } |
| 1999 | |
| 2000 | function animateAfter(animationEvent, element, className, afterAnimationComplete, styles) { |
| 2001 | if (element.data(NG_ANIMATE_CSS_DATA_KEY)) { |
no test coverage detected