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/ngInclude.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/ngInclude.js')
| -rw-r--r-- | src/ng/directive/ngInclude.js | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/src/ng/directive/ngInclude.js b/src/ng/directive/ngInclude.js index 730c7bdf..1187c733 100644 --- a/src/ng/directive/ngInclude.js +++ b/src/ng/directive/ngInclude.js @@ -61,8 +61,8 @@        <div>Content of template2.html</div>      </file>      <file name="animations.css"> -      .example-leave-setup, -      .example-enter-setup { +      .example-leave, +      .example-enter {          -webkit-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s;          -moz-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s;          -ms-transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s; @@ -81,17 +81,17 @@          padding:10px;        } -      .example-enter-setup { +      .example-enter {          top:-50px;        } -      .example-enter-setup.example-enter-start { +      .example-enter.example-enter-active {          top:0;        } -      .example-leave-setup { +      .example-leave {          top:0;        } -      .example-leave-setup.example-leave-start { +      .example-leave.example-leave-active {          top:50px;        }      </file> | 
