(options)
| 73 | } |
| 74 | |
| 75 | constructor (options) { |
| 76 | super(options) |
| 77 | this.runSearch = this.runSearch.bind(this) |
| 78 | this.runSearch = _.debounce(this.runSearch, 500) |
| 79 | this.modelProperties = options.modelProperties || this.modelProperties || {} |
| 80 | this.hasNoNameProperty = options.hasNoNameProperty || this.hasNoNameProperty |
| 81 | } |
| 82 | |
| 83 | afterRender () { |
| 84 | super.afterRender() |
nothing calls this directly
no outgoing calls
no test coverage detected