()
| 21 | module.exports = (ThangTasksView = (function () { |
| 22 | ThangTasksView = class ThangTasksView extends RootView { |
| 23 | static initClass () { |
| 24 | this.prototype.template = template |
| 25 | this.prototype.id = 'thang-tasks-view' |
| 26 | this.prototype.events = { |
| 27 | 'input input': 'processThangs', |
| 28 | 'change input': 'processThangs' |
| 29 | } |
| 30 | |
| 31 | this.prototype.thangs = {} |
| 32 | this.prototype.processedThangs = {} |
| 33 | } |
| 34 | |
| 35 | initialize () { |
| 36 | this.processThangs = _.debounce(this.processThangs, 250) |