()
| 399 | } |
| 400 | |
| 401 | manageFocusAfterClose() { |
| 402 | if (this._triggeringElement) { |
| 403 | const { returnFocusAfterClose } = this.props; |
| 404 | if (this._triggeringElement.focus && returnFocusAfterClose) |
| 405 | this._triggeringElement.focus(); |
| 406 | this._triggeringElement = null; |
| 407 | } |
| 408 | } |
| 409 | |
| 410 | close() { |
| 411 | if (Modal.openCount <= 1) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…