Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ngAnimate-animate.css Module
# ngAnimate-animate-css Module

## Requirements

Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion animate.js
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down
8 changes: 4 additions & 4 deletions bower.json
Original file line number Diff line number Diff line change
@@ -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 <contact@yearofmoo.com>"
],
Expand All @@ -10,7 +10,7 @@

"keywords": [
"ngAnimate",
"animate.css",
"animate-css",
"angular",
"angular-animate"
],
Expand All @@ -24,6 +24,6 @@
"dependencies": {
"angular": "latest",
"angular-animate": "latest",
"animate.css": "latest"
"animate-css": "latest"
}
}