(props)
| 32 | |
| 33 | class DropdownToggle extends React.Component { |
| 34 | constructor(props) { |
| 35 | super(props); |
| 36 | |
| 37 | this.onClick = this.onClick.bind(this); |
| 38 | } |
| 39 | |
| 40 | onClick(e) { |
| 41 | if (this.props.disabled || this.context.disabled) { |
nothing calls this directly
no outgoing calls
no test coverage detected