()
| 81 | } |
| 82 | |
| 83 | afterRender () { |
| 84 | super.afterRender() |
| 85 | const hash = document.location.hash.slice(1) |
| 86 | const searchInput = this.$el.find('#search') |
| 87 | if (hash != null) { searchInput.val(hash) } |
| 88 | if (this.collection != null) { |
| 89 | delete this.collection.term |
| 90 | } |
| 91 | searchInput.trigger('change') |
| 92 | return searchInput.focus() |
| 93 | } |
| 94 | |
| 95 | runSearch () { |
| 96 | if (this.destroyed) { return } |
nothing calls this directly
no outgoing calls
no test coverage detected