From 4f84f6b3e4210ae1eb14728a46d43dd961700a0c Mon Sep 17 00:00:00 2001 From: Matias Niemelä Date: Fri, 14 Feb 2014 04:02:46 -0500 Subject: fix($animate): ensure $animate doesn't break natural CSS transitions BREAKING CHANGE: ngClass and {{ class }} will now call the `setClass` animation callback instead of addClass / removeClass when both a addClass/removeClass operation is being executed on the element during the animation. Please include the setClass animation callback as well as addClass and removeClass within your JS animations to work with ngClass and {{ class }} directives. Closes #6019 --- css/angular.css | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'css') diff --git a/css/angular.css b/css/angular.css index b88e61e4..2566640e 100644 --- a/css/angular.css +++ b/css/angular.css @@ -9,3 +9,8 @@ ng\:form { display: block; } + +.ng-animate-block-transitions { + transition:0s all!important; + -webkit-transition:0s all!important; +} -- cgit v1.2.3