diff --git a/README.md b/README.md index d55c936..3d4a54f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# ngAnimate-animate.css Module +# ngAnimate-animate-css Module ## Requirements @@ -7,21 +7,21 @@ AngularJS 1.2.3+ (it should also work with 1.2.0 and 1.2.1, but 1.2.2 does not w ## Installation 1. Prepare angular.js 1.2 into your application with the ngAnimate module -2. Download and include animate.css into your webpage +2. Download and include animate-css into your webpage 3. Include animate.js into your webpage -4. Set **ngAnimate-animate.css** as a dependency inside of your application module. +4. Set **ngAnimate-animate-css** as a dependency inside of your application module. You can also use bower: ```bash # this should install v0.1.1 or higher -# and it should also include animate.css -bower install ngAnimate-animate.css --save +# and it should also include animate-css +bower install ngAnimate-animate-css --save ``` ## Usage -This plugin automatically registers simple CSS classes to all animations for animate.css within the AngularJS ngAnimate +This plugin automatically registers simple CSS classes to all animations for animate-css within the AngularJS ngAnimate JavaScript animation API. Once installed, animations can be performed by attaching the following CSS classes to an element. diff --git a/animate.js b/animate.js index a07f663..260b48f 100644 --- a/animate.js +++ b/animate.js @@ -1,4 +1,4 @@ -angular.module('ngAnimate-animate.css', ['ngAnimate']) +angular.module('ngAnimate-animate-css', ['ngAnimate']) .factory('animateCSSBuild', ['$timeout', function($timeout) { return function(baseClass, classNames) { diff --git a/bower.json b/bower.json index 615d54a..0d48cbb 100644 --- a/bower.json +++ b/bower.json @@ -1,7 +1,7 @@ { - "name": "ngAnimate-animate.css", + "name": "ngAnimate-animate-css", "version": "0.1.1", - "homepage": "https://github.com/yearofmoo/ngAnimate-animate.css", + "homepage": "https://github.com/alain75007/ngAnimate-animate-css", "authors": [ "yearofmoo " ], @@ -10,7 +10,7 @@ "keywords": [ "ngAnimate", - "animate.css", + "animate-css", "angular", "angular-animate" ], @@ -24,6 +24,6 @@ "dependencies": { "angular": "latest", "angular-animate": "latest", - "animate.css": "latest" + "animate-css": "latest" } }