()
| 15 | module.exports = (HeroSelectModal = (function () { |
| 16 | HeroSelectModal = class HeroSelectModal extends ModalView { |
| 17 | static initClass () { |
| 18 | this.prototype.id = 'hero-select-modal' |
| 19 | this.prototype.template = template |
| 20 | this.prototype.retainSubviews = true |
| 21 | |
| 22 | this.prototype.events = |
| 23 | { 'click .select-hero-btn': 'onClickSelectHeroButton' } |
| 24 | } |
| 25 | |
| 26 | constructor (options) { |
| 27 | super(options) |