diff --git a/src/js/toggle.jsx b/src/js/toggle.jsx index 272c4352d9b136..ed401fa90b9dbf 100644 --- a/src/js/toggle.jsx +++ b/src/js/toggle.jsx @@ -36,10 +36,10 @@ var Toggle = React.createClass({ }, _onClick: function(e) { + if (this.refs.radioButton._onClick != null) this.refs.radioButton._onClick = null; var toggledState = !this.state.toggled; this.setState({ toggled: toggledState }); - this.refs.radioButton.toggle(); if (this.props.onToggle) this.props.onToggle(e, toggledState); }