(e: KeyboardEvent)
| 348 | } |
| 349 | |
| 350 | _onkeyup(e: KeyboardEvent) { |
| 351 | if (isSpace(e)) { |
| 352 | this._selectYearRange(e); |
| 353 | } |
| 354 | } |
| 355 | |
| 356 | _onHomeOrEnd(homePressed: boolean) { |
| 357 | this._yearRanges.forEach(row => { |
nothing calls this directly
no test coverage detected