From 11f712bc3e310302eb2e8691cf6d110bdcde1810 Mon Sep 17 00:00:00 2001 From: Matias Niemelàˆ Date: Tue, 7 May 2013 17:11:39 -0400 Subject: 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 {...} --- src/ng/animator.js | 21 ++++++++++----------- src/ng/directive/ngInclude.js | 12 ++++++------ src/ng/directive/ngRepeat.js | 18 +++++++++--------- src/ng/directive/ngShowHide.js | 20 ++++++++++---------- src/ng/directive/ngSwitch.js | 10 +++++----- src/ng/directive/ngView.js | 10 +++++----- 6 files changed, 45 insertions(+), 46 deletions(-) (limited to 'src') diff --git a/src/ng/animator.js b/src/ng/animator.js index 97c9e0ed..04ef4a6e 100644 --- a/src/ng/animator.js +++ b/src/ng/animator.js @@ -58,7 +58,7 @@ * The animate-enter CSS class is the event name that you * have provided within the ngAnimate attribute. * */ - * .animate-enter-setup { + * .animate-enter { * -webkit-transition: 1s linear all; /* Safari/Chrome */ * -moz-transition: 1s linear all; /* Firefox */ * -ms-transition: 1s linear all; /* IE10 */ @@ -74,7 +74,7 @@ * classes together to avoid any CSS-specificity * conflicts * */ - * .animate-enter-setup.animate-enter-start { + * .animate-enter.animate-enter-active { * /* The animation code itself */ * opacity: 1; * } @@ -87,7 +87,7 @@ * *
*