()
| 19 | module.exports = (InvoicesView = (function () { |
| 20 | InvoicesView = class InvoicesView extends RootView { |
| 21 | static initClass () { |
| 22 | this.prototype.id = 'invoices-view' |
| 23 | this.prototype.template = template |
| 24 | |
| 25 | this.prototype.events = |
| 26 | { 'click #pay-button': 'onPayButton' } |
| 27 | |
| 28 | this.prototype.subscriptions = |
| 29 | { 'stripe:received-token': 'onStripeReceivedToken' } |
| 30 | } |
| 31 | |
| 32 | constructor (options) { |
| 33 | super(options) |