(e: KeyboardEvent)
| 460 | } |
| 461 | |
| 462 | onInputKeyDown(e: KeyboardEvent) { |
| 463 | if (isShow(e)) { |
| 464 | e.preventDefault(); |
| 465 | if (this.open) { |
| 466 | if (!isF4(e)) { |
| 467 | this._toggleAndFocusInput(); |
| 468 | } |
| 469 | } else { |
| 470 | this._toggleAndFocusInput(); |
| 471 | } |
| 472 | } |
| 473 | } |
| 474 | |
| 475 | _toggleAndFocusInput() { |
| 476 | this._togglePicker(); |
nothing calls this directly
no test coverage detected