()
| 74 | } |
| 75 | |
| 76 | hideOptions () { |
| 77 | this.setState({ active: false }); |
| 78 | this.unbindClickAway(); |
| 79 | // use setTimeout instead of transitionEnd |
| 80 | setTimeout(() => { |
| 81 | if (this.state.active === false) { |
| 82 | this.refs.options.style.display = 'none'; |
| 83 | } |
| 84 | }, 500); |
| 85 | } |
| 86 | |
| 87 | getValue (sep=this.props.sep, data=this.state.data) { |
| 88 | let value = [], |
nothing calls this directly
no test coverage detected
searching dependent graphs…