(e: KeyboardEvent)
| 104 | } |
| 105 | |
| 106 | onEnter(e: KeyboardEvent) { |
| 107 | if (this._isGroupItem) { |
| 108 | e.preventDefault(); |
| 109 | return false; |
| 110 | } |
| 111 | |
| 112 | if (this._isItemOnTarget()) { |
| 113 | this.onItemSelected(this._selectedItem, true /* keyboardUsed */); |
| 114 | return true; |
| 115 | } |
| 116 | |
| 117 | return false; |
| 118 | } |
| 119 | |
| 120 | onPageUp(e: KeyboardEvent) { |
| 121 | e.preventDefault(); |
no test coverage detected