(options)
| 24 | } |
| 25 | |
| 26 | constructor (options) { |
| 27 | super(options) |
| 28 | this.listenTo(this.insertSubView(new HeroSelectView({ showCurrentHero: true, product: (options || {}).product })), |
| 29 | 'hero-select:success', function (hero) { |
| 30 | if (!this.destroyed) { return this.trigger('hero-select:success', hero) } |
| 31 | }) |
| 32 | } |
| 33 | |
| 34 | onClickSelectHeroButton () { |
| 35 | return this.hide() |
nothing calls this directly
no outgoing calls
no test coverage detected