()
| 623 | } |
| 624 | |
| 625 | async navigateRight() { |
| 626 | let newFocusedItemIndex = this._focusedItemIndex + 1; |
| 627 | if (this.cyclic && newFocusedItemIndex > this.items.length - 1) { |
| 628 | newFocusedItemIndex = 0; |
| 629 | } |
| 630 | |
| 631 | this._changeFocusIndex(newFocusedItemIndex); |
| 632 | await renderFinished(); |
| 633 | this.focusItem(); |
| 634 | } |
| 635 | |
| 636 | async navigateArrowRight() { |
| 637 | let newCurrentPageIndex = this._currentPageIndex + 1; |
no test coverage detected