From 3e4d43b42c37b589eb75c740998b671de8a5f263 Mon Sep 17 00:00:00 2001 From: Matias Niemelä Date: Mon, 13 May 2013 14:06:50 +0100 Subject: docs(animation): fix code example to work with most recent ngAnimate ngAnimate: Rename CSS classes in example code to work with new ngAnimate naming conventions ngInclude: Include animations toggle in ngInclude example code ngAnimate: Remove ms- prefix and fix up CSS animation example code --- src/ng/animator.js | 11 +++++------ src/ng/directive/ngIf.js | 10 +++++----- src/ng/directive/ngInclude.js | 2 +- 3 files changed, 11 insertions(+), 12 deletions(-) (limited to 'src/ng') diff --git a/src/ng/animator.js b/src/ng/animator.js index faf2ed40..1f589e91 100644 --- a/src/ng/animator.js +++ b/src/ng/animator.js @@ -61,9 +61,8 @@ * .animate-enter { * -webkit-transition: 1s linear all; /* Safari/Chrome */ * -moz-transition: 1s linear all; /* Firefox */ - * -ms-transition: 1s linear all; /* IE10 */ * -o-transition: 1s linear all; /* Opera */ - * transition: 1s linear all; /* Future Browsers */ + * transition: 1s linear all; /* IE10+ and Future Browsers */ * * /* The animation preparation code */ * opacity: 0; @@ -88,10 +87,10 @@ *
  *