()
| 14 | module.exports = (MainAccountView = (function () { |
| 15 | MainAccountView = class MainAccountView extends RootView { |
| 16 | static initClass () { |
| 17 | this.prototype.id = 'main-account-view' |
| 18 | this.prototype.template = template |
| 19 | |
| 20 | this.prototype.events = |
| 21 | { 'click .logout-btn': 'logoutAccount' } |
| 22 | } |
| 23 | |
| 24 | getMeta () { |
| 25 | return { title: $.i18n.t('account.title') } |