react-checkbox-group
Advanced tools
Comparing version
{ | ||
"name": "react-checkbox-group", | ||
"version": "3.0.1", | ||
"version": "3.1.0", | ||
"description": "Sensible checkbox groups manipulation for DOM.", | ||
@@ -5,0 +5,0 @@ "main": "react-checkbox-group.js", |
@@ -141,5 +141,5 @@ 'use strict'; | ||
if (typeof this.props.onChange === 'function') { | ||
this.props.onChange(newValue); | ||
this.props.onChange(newValue, event); | ||
} | ||
} | ||
}); |
@@ -117,5 +117,5 @@ import React, {PropTypes} from 'react'; | ||
if (typeof this.props.onChange === 'function') { | ||
this.props.onChange(newValue); | ||
this.props.onChange(newValue, event); | ||
} | ||
} | ||
}); |
17551
0.08%