Skip to content

Commit

Permalink
Fixed missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanregisser committed Jun 13, 2016
1 parent 4c8ff47 commit 3853d24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Slider.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,12 +156,12 @@ var Slider = React.createClass({
/**
* Custom Animation type. 'spring' or 'timing'.
*/
animationType : PropTypes.oneOf(['spring', 'timing'])
animationType : PropTypes.oneOf(['spring', 'timing']),

/**
* Used to configure the animation parameters. These are the same parameters in the Animated library.
*/
animationConfig : PropTypes.object
animationConfig : PropTypes.object,
},
getInitialState() {
return {
Expand Down

0 comments on commit 3853d24

Please sign in to comment.