(e: KeyboardEvent)
| 480 | } |
| 481 | |
| 482 | onKeyDownPopover(e: KeyboardEvent) { |
| 483 | if (isShow(e)) { |
| 484 | e.preventDefault(); // Prevent scroll on Alt/Option + Arrow Up/Down |
| 485 | this._toggleAndFocusInput(); |
| 486 | } |
| 487 | } |
| 488 | |
| 489 | /** |
| 490 | * Registers a new dynamic date range option with a unique key. |
nothing calls this directly
no test coverage detected