diff options
| author | Matias Niemelä | 2013-11-06 01:57:34 -0500 | 
|---|---|---|
| committer | Matias Niemelä | 2013-11-06 02:01:19 -0500 | 
| commit | 9470080762aecca5285d0f5cac4ae01540bbad4c (patch) | |
| tree | a7d5c896504ad499e29ba9953cf5137a196e855b /css/angular.css | |
| parent | aba0fe683040f753f60a0f8030777d94aa9f58bf (diff) | |
| download | angular.js-9470080762aecca5285d0f5cac4ae01540bbad4c.tar.bz2 | |
fix($animate): only apply the fallback property if any transition animations are detected
Diffstat (limited to 'css/angular.css')
| -rw-r--r-- | css/angular.css | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/css/angular.css b/css/angular.css index 46fee32d..029d3a7d 100644 --- a/css/angular.css +++ b/css/angular.css @@ -18,5 +18,5 @@ ng\:form {   * animations. The clip (!ie) and zoom (ie) CSS properties are used   * since they trigger a transition without making the browser   * animate anything and they're both highly underused CSS properties */ -.ng-animate { clip:rect(1px, auto, auto, 0); -ms-zoom:1.0001; } -.ng-animate-active { clip:rect(0, auto, auto, 0); -ms-zoom:1; } +.ng-animate-start { clip:rect(0, auto, auto, 0); -ms-zoom:1.0001; } +.ng-animate-active { clip:rect(-1px, auto, auto, 0); -ms-zoom:1; } | 
