()
| 24 | module.exports = (ClansView = (function () { |
| 25 | ClansView = class ClansView extends RootView { |
| 26 | static initClass () { |
| 27 | this.prototype.id = 'clans-view' |
| 28 | this.prototype.template = template |
| 29 | |
| 30 | this.prototype.events = { |
| 31 | 'click .create-clan-btn': 'onClickCreateClan', |
| 32 | 'click .join-clan-btn': 'onJoinClan', |
| 33 | 'click .leave-clan-btn': 'onLeaveClan', |
| 34 | 'click .private-clan-checkbox': 'onClickPrivateCheckbox' |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | getMeta () { |
| 39 | return { |