()
| 19 | module.exports = (PremiumFeaturesView = (function () { |
| 20 | PremiumFeaturesView = class PremiumFeaturesView extends RootView { |
| 21 | static initClass () { |
| 22 | this.prototype.id = 'premium-features-view' |
| 23 | this.prototype.template = template |
| 24 | |
| 25 | this.prototype.i18nData = utils.premiumContent |
| 26 | |
| 27 | this.prototype.events = |
| 28 | { 'click .buy': 'onClickBuy' } |
| 29 | |
| 30 | this.prototype.subscriptions = |
| 31 | { 'subscribe-modal:subscribed': 'onSubscribed' } |
| 32 | } |
| 33 | |
| 34 | constructor (options) { |
| 35 | if (options == null) { options = {} } |
no outgoing calls
no test coverage detected