Goes to the previous set of items.
()
| 97 | |
| 98 | /** Goes to the previous set of items. */ |
| 99 | previous() { |
| 100 | for (let i = this.index; i > -1; i--) { |
| 101 | if (this._isOutOfView(i)) { |
| 102 | this.index = i; |
| 103 | this._scrollToActiveItem(); |
| 104 | break; |
| 105 | } |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | /** Updates the `tabindex` of each of the items based on their active state. */ |
| 110 | private _updateItemTabIndices() { |
nothing calls this directly
no test coverage detected