(e)
| 751 | } |
| 752 | |
| 753 | onDownArrowPressed (e) { |
| 754 | if (!this.isEditing()) { return super.onDownArrowPressed(...arguments) } |
| 755 | this.navigateSearch(1) |
| 756 | return e.preventDefault() |
| 757 | } |
| 758 | |
| 759 | onUpArrowPressed (e) { |
| 760 | if (!this.isEditing()) { return super.onUpArrowPressed(...arguments) } |
nothing calls this directly
no test coverage detected