()
| 634 | } |
| 635 | |
| 636 | async navigateArrowRight() { |
| 637 | let newCurrentPageIndex = this._currentPageIndex + 1; |
| 638 | if (this.cyclic && newCurrentPageIndex > this.items.length - this.effectiveItemsPerPage) { |
| 639 | newCurrentPageIndex = 0; |
| 640 | } |
| 641 | |
| 642 | this._changePageIndex(newCurrentPageIndex); |
| 643 | await renderFinished(); |
| 644 | this.focusItem(); |
| 645 | } |
| 646 | |
| 647 | async navigateArrowLeft() { |
| 648 | let newCurrentPageIndex = this._currentPageIndex - 1; |
no test coverage detected