(e)
| 209 | } |
| 210 | |
| 211 | handleEscape(e) { |
| 212 | if (this.props.isOpen && e.keyCode === keyCodes.esc && this.props.toggle) { |
| 213 | if (this.props.keyboard) { |
| 214 | e.preventDefault(); |
| 215 | e.stopPropagation(); |
| 216 | |
| 217 | this.props.toggle(e); |
| 218 | } |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | onOpened(node, isAppearing) { |
| 223 | this.props.onOpened(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…