Skip to content

Commit

Permalink
update interval default
Browse files Browse the repository at this point in the history
  • Loading branch information
jljsj33 committed Oct 19, 2015
1 parent d66af29 commit ba7c6a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ ReactDom.render(<QueueAnim>
| animConfig | object / array | null | Custom Velocity config, like `{opacity:[1, 0], translateY:[0, -30]}`, [velocity config](http://julian.com/research/velocity) |
| delay | number / array | 0 | delay of animation |
| duration | number / array | 500 | duration of animation |
| interval | number / array | 30 | interval of duration |
| interval | number / array | 100 | interval of duration |
| leaveReverse | boolean | false | reverse animation order at leave |
| ease | string / array | `easeOutQuart` | animation easing string, [more](http://julian.com/research/velocity/#easing) |
| component | string | `div` | component tag |
Expand Down
2 changes: 1 addition & 1 deletion src/QueueAnim.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ QueueAnim.propTypes = {

QueueAnim.defaultProps = {
component: 'div',
interval: 30,
interval: 100,
duration: 500,
delay: 0,
type: 'right',
Expand Down

0 comments on commit ba7c6a0

Please sign in to comment.