(e: ScrollEnablementEventListenerParam)
| 430 | } |
| 431 | |
| 432 | _updateScrolling(e: ScrollEnablementEventListenerParam) { |
| 433 | if (!e) { |
| 434 | return; |
| 435 | } |
| 436 | |
| 437 | if (e.isLeft) { |
| 438 | this.navigateLeft(); |
| 439 | } else if (e.isRight) { |
| 440 | this.navigateRight(); |
| 441 | } |
| 442 | } |
| 443 | |
| 444 | _onkeydown(e: KeyboardEvent) { |
| 445 | if (isF7(e)) { |
no test coverage detected