(e)
| 757 | } |
| 758 | |
| 759 | onUpArrowPressed (e) { |
| 760 | if (!this.isEditing()) { return super.onUpArrowPressed(...arguments) } |
| 761 | e.preventDefault() |
| 762 | return this.navigateSearch(-1) |
| 763 | } |
| 764 | |
| 765 | navigateSearch (offset) { |
| 766 | const selected = this.getSelectedResultEl() |
nothing calls this directly
no test coverage detected