diff options
| author | nosideeffects | 2014-01-14 17:26:12 -0700 | 
|---|---|---|
| committer | Matias Niemelä | 2014-02-28 11:37:57 -0500 | 
| commit | 9aab5bfc03bfb9f39b5c18b878e14c9a60a2681a (patch) | |
| tree | 97dc4d9944e62989ba2e6f5d4d56e1ec5f7416ea | |
| parent | 18c41af065006a804a3d38eecca7ae184103ece9 (diff) | |
| download | angular.js-9aab5bfc03bfb9f39b5c18b878e14c9a60a2681a.tar.bz2 | |
docs(ngAnimate): add missing 'super' to addClass
| -rw-r--r-- | src/ngAnimate/animate.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/ngAnimate/animate.js b/src/ngAnimate/animate.js index 76280b3b..6cc633a3 100644 --- a/src/ngAnimate/animate.js +++ b/src/ngAnimate/animate.js @@ -646,7 +646,7 @@ angular.module('ngAnimate', ['ng'])           * | 4. $animate scans the element styles to get the CSS transition/animation duration and delay    | class="my-animation ng-animate super-add"   |           * | 5. $animate waits for 10ms (this performs a reflow)                                            | class="my-animation ng-animate super-add"   |           * | 6. the .super, .super-add-active and .ng-animate-active classes are added (this triggers the CSS transition/animation) | class="my-animation ng-animate ng-animate-active super super-add super-add-active"          | -         * | 7. $animate waits for X milliseconds for the animation to complete                             | class="my-animation super-add super-add-active"  | +         * | 7. $animate waits for X milliseconds for the animation to complete                             | class="my-animation super super-add super-add-active"  |           * | 8. The animation ends and all generated CSS classes are removed from the element               | class="my-animation super"                  |           * | 9. The super class is kept on the element                                                      | class="my-animation super"                  |           * | 10. The doneCallback() callback is fired (if provided)                                         | class="my-animation super"                  | | 
