()
| 12 | module.exports = (BaseView = (function () { |
| 13 | BaseView = class BaseView extends RootView { |
| 14 | static initClass () { |
| 15 | this.prototype.id = 'base-view' |
| 16 | this.prototype.template = template |
| 17 | this.prototype.usesSocialMedia = true |
| 18 | } |
| 19 | } |
| 20 | BaseView.initClass() |
| 21 | return BaseView |