()
| 21 | module.exports = (HeroSelectView = (function () { |
| 22 | HeroSelectView = class HeroSelectView extends CocoView { |
| 23 | static initClass () { |
| 24 | this.prototype.id = 'hero-select-view' |
| 25 | this.prototype.template = template |
| 26 | |
| 27 | this.prototype.events = |
| 28 | { 'click .hero-option': 'onClickHeroOption' } |
| 29 | } |
| 30 | |
| 31 | constructor (options = {}) { |
| 32 | super(options) |