| 19 | module.exports = (LeaderboardModal = (function () { |
| 20 | LeaderboardModal = class LeaderboardModal extends ModalView { |
| 21 | static initClass () { |
| 22 | this.prototype.id = 'leaderboard-modal' |
| 23 | this.prototype.template = template |
| 24 | this.prototype.instant = true |
| 25 | this.prototype.timespans = ['latest', 'all'] |
| 26 | |
| 27 | this.prototype.subscriptions = {} |
| 28 | |
| 29 | this.prototype.events = { |
| 30 | 'shown.bs.tab #leaderboard-nav a': 'onTabShown', |
| 31 | 'click #close-modal': 'hide' |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | constructor (options) { |
| 36 | super(options) |