()
| 33 | module.exports = (MainUserView = (function () { |
| 34 | MainUserView = class MainUserView extends UserView { |
| 35 | static initClass () { |
| 36 | this.prototype.id = 'user-home' |
| 37 | this.prototype.template = template |
| 38 | |
| 39 | this.prototype.events = |
| 40 | { 'click .more-button': 'onClickMoreButton' } |
| 41 | } |
| 42 | |
| 43 | constructor (userID, options) { |
| 44 | super(options) |