diff options
| author | Matias Niemelàˆ | 2013-05-07 17:11:39 -0400 |
|---|---|---|
| committer | Misko Hevery | 2013-05-08 16:03:31 -0700 |
| commit | 11f712bc3e310302eb2e8691cf6d110bdcde1810 (patch) | |
| tree | 5e8b27a3dc2a8b0b18a4e0560f21f007206772b5 /src/ng/directive/ngRepeat.js | |
| parent | 14757874a7cea7961f31211b245c417bd4b20512 (diff) | |
| download | angular.js-11f712bc3e310302eb2e8691cf6d110bdcde1810.tar.bz2 | |
chore(ngAnimate): CSS classes X-setup/X-start -> X/X-active
BREAKING CHANGE: css classes foo-setup/foo-start become foo/foo-active
The CSS transition classes have changed suffixes. To migrate rename
.foo-setup {...} to .foo {...}
.foo-start {...} to .foo-active {...}
or for type: enter, leave, move, show, hide
.foo-type-setup {...} to .foo-type {...}
.foo-type-start {...} to .foo-type-active {...}
Diffstat (limited to 'src/ng/directive/ngRepeat.js')
| -rw-r--r-- | src/ng/directive/ngRepeat.js | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/ng/directive/ngRepeat.js b/src/ng/directive/ngRepeat.js index 0fd53c2f..330f6abb 100644 --- a/src/ng/directive/ngRepeat.js +++ b/src/ng/directive/ngRepeat.js @@ -88,9 +88,9 @@ </div> </file> <file name="animations.css"> - .example-repeat-enter-setup, - .example-repeat-leave-setup, - .example-repeat-move-setup { + .example-repeat-enter, + .example-repeat-leave, + .example-repeat-move { -webkit-transition:all linear 0.5s; -moz-transition:all linear 0.5s; -ms-transition:all linear 0.5s; @@ -98,26 +98,26 @@ transition:all linear 0.5s; } - .example-repeat-enter-setup { + .example-repeat-enter { line-height:0; opacity:0; } - .example-repeat-enter-setup.example-repeat-enter-start { + .example-repeat-enter.example-repeat-enter-active { line-height:20px; opacity:1; } - .example-repeat-leave-setup { + .example-repeat-leave { opacity:1; line-height:20px; } - .example-repeat-leave-setup.example-repeat-leave-start { + .example-repeat-leave.example-repeat-leave-active { opacity:0; line-height:0; } - .example-repeat-move-setup { } - .example-repeat-move-setup.example-repeat-move-start { } + .example-repeat-move { } + .example-repeat-move.example-repeat-move-active { } </file> <file name="scenario.js"> it('should render initial data set', function() { |
