(...args)
| 25 | module.exports = (PrepaidView = (function () { |
| 26 | PrepaidView = class PrepaidView extends RootView { |
| 27 | constructor (...args) { |
| 28 | super(...args) |
| 29 | this.dashedPPC = this.dashedPPC.bind(this) |
| 30 | this.onClickStartSubscription = this.onClickStartSubscription.bind(this) |
| 31 | this.confirmRedeem = this.confirmRedeem.bind(this) |
| 32 | } |
| 33 | |
| 34 | static initClass () { |
| 35 | this.prototype.id = 'prepaid-view' |
nothing calls this directly
no outgoing calls
no test coverage detected