()
| 341 | } |
| 342 | |
| 343 | manageFocusAfterClose() { |
| 344 | if (this._triggeringElement) { |
| 345 | const { returnFocusAfterClose } = this.props; |
| 346 | if (this._triggeringElement.focus && returnFocusAfterClose) |
| 347 | this._triggeringElement.focus(); |
| 348 | this._triggeringElement = null; |
| 349 | } |
| 350 | } |
| 351 | |
| 352 | close() { |
| 353 | this.manageFocusAfterClose(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…