Skip to content

Commit 05a58b7

Browse files
committed
Merge pull request craigmdennis#15 from craigmdennis/v1.1
V1.1
2 parents 93c8ca9 + d965051 commit 05a58b7

File tree

7 files changed

+21
-9
lines changed

7 files changed

+21
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<a name="1.1.4-0"></a>
2+
### 1.1.4-0 (2014-05-27)
3+
4+
15
<a name="1.1.3-1"></a>
26
### 1.1.3-1 (2014-05-21)
37

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ A jQuery plugin to dynamically apply [Dan Eden's animate.css][animate.css] anima
66

77
## Getting Started
88

9+
### Bower
10+
Install with [Bower][bower]
11+
`bower install animateCSS`
12+
13+
[bower]: http://bower.io/
14+
15+
### Download
16+
917
Download the [production version][min] or the [development version][max].
1018

1119
[min]: https://raw.github.com/craigmdennis/animateCSS/master/dist/jquery.animatecss.min.js
@@ -28,7 +36,7 @@ $(document).ready( function(){
2836
```js
2937
{
3038
infinite: false, // True or False
31-
animationClass: "animate", // Can be any class
39+
animationClass: "animated", // Can be any class
3240
delay: 0 // Can be any value (in ms)
3341
callback: // Any function
3442
}
@@ -93,7 +101,7 @@ If you want to hide an element when the page loads and then apply an effect, it
93101
```js
94102
$(window).load( function(){
95103
$('#your-id').animateCSS('fadeIn', function(){
96-
alert('Boom! Animation Complete');
104+
console.log('Boom! Animation Complete');
97105
});
98106
});
99107
```

animateCSS.jquery.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "animateCSS",
33
"title": "Animate CSS jQuery Plugin",
44
"description": "A jQuery plugin to dynamically apply animate.css animations with callbacks",
5-
"version": "1.1.3-1",
5+
"version": "1.1.4",
66
"homepage": "https://github.com/craigmdennis/animateCSS.git",
77
"author": {
88
"name": "Craig Dennis",

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "animateCSS",
33
"description": "A jQuery plugin to dynamically apply animate.css animations with callbacks",
44
"main": "dist/jquery.animatecss.js",
5-
"version": "1.1.3-1",
5+
"version": "1.1.4",
66
"dependencies": {
77
"animate.css": "~3.1.1"
88
},

dist/jquery.animatecss.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
/*! animateCSS - v1.1.0 - 2014-05-21
2-
* https://github.com/craigmdennis/animatecss
1+
/*! animateCSS - v1.1.3-1 - 2014-05-27
2+
* https://github.com/craigmdennis/animateCSS
33
* Copyright (c) 2014 Craig Dennis; Licensed MIT */
44

55
(function() {

dist/jquery.animatecss.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "animateCSS",
3-
"version": "1.1.3-1",
3+
"version": "1.1.4",
44
"description": "Animate CSS jQuery Plugin",
55
"keywords": [
66
"jquery-plugin",

0 commit comments

Comments
 (0)