Skip to content

Commit

Permalink
Correct jQuery example. Fixes #127
Browse files Browse the repository at this point in the history
  • Loading branch information
daneden committed Jan 31, 2014
1 parent d5d0861 commit ee75b81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ $('#yourElement').addClass('animated bounceOutLeft');
You can also detect when an animation ends:

```javascript
$('#yourElement').one('webkitAnimationEnd mozAnimationEnd oAnimationEnd animationEnd', doSomething());
$('#yourElement').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', doSomething());
```

You can change the duration of your animations, add a delay or change the number of times that it plays:
Expand Down

0 comments on commit ee75b81

Please sign in to comment.