From 82831b5a5e62abc19d27918e643711fe840857d5 Mon Sep 17 00:00:00 2001 From: Dominic Watson Date: Mon, 15 Jun 2015 16:43:31 +0200 Subject: [PATCH] docs(ngAnimate) - Correct `keyframe` to `keyframeStyle` --- src/ngAnimate/animateCss.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ngAnimate/animateCss.js b/src/ngAnimate/animateCss.js index 50a842717f29..9669f7e26937 100644 --- a/src/ngAnimate/animateCss.js +++ b/src/ngAnimate/animateCss.js @@ -186,7 +186,7 @@ * to the element during the animation. Multiple events can be provided when spaces are used as a separator. (Note that this will not perform any DOM operation.) * * `easing` - The CSS easing value that will be applied to the transition or keyframe animation (or both). * * `transition` - The raw CSS transition style that will be used (e.g. `1s linear all`). - * * `keyframe` - The raw CSS keyframe animation style that will be used (e.g. `1s my_animation linear`). + * * `keyframeStyle` - The raw CSS keyframe animation style that will be used (e.g. `1s my_animation linear`). * * `from` - The starting CSS styles (a key/value object) that will be applied at the start of the animation. * * `to` - The ending CSS styles (a key/value object) that will be applied across the animation via a CSS transition. * * `addClass` - A space separated list of CSS classes that will be added to the element and spread across the animation.