()
| 51 | } |
| 52 | |
| 53 | open () { |
| 54 | if (this.state.active) { |
| 55 | return; |
| 56 | } |
| 57 | this.bindClickAway(); |
| 58 | let options = this.refs.options; |
| 59 | options.style.display = 'block'; |
| 60 | setTimeout(() => { |
| 61 | this.setState({ active: true }); |
| 62 | }, 0); |
| 63 | setTimeout(() => { |
| 64 | options.parentNode.style.overflow = 'visible'; |
| 65 | }, 450); |
| 66 | } |
| 67 | |
| 68 | close () { |
| 69 | let options = this.refs.options; |
no test coverage detected
searching dependent graphs…