(e: KeyboardEvent)
| 769 | } |
| 770 | |
| 771 | _handleEndKey(e: KeyboardEvent) { |
| 772 | e.preventDefault(); |
| 773 | |
| 774 | if (this.readonly) { |
| 775 | return; |
| 776 | } |
| 777 | |
| 778 | const lastIndex = this.options.length - 1; |
| 779 | this._changeSelectedItem(this._selectedIndex, lastIndex); |
| 780 | } |
| 781 | |
| 782 | _onkeyup(e: KeyboardEvent) { |
| 783 | if (isSpace(e)) { |
no test coverage detected