| 28 | module.exports = (AnalyticsView = (function () { |
| 29 | AnalyticsView = class AnalyticsView extends RootView { |
| 30 | static initClass () { |
| 31 | this.prototype.id = 'admin-analytics-view' |
| 32 | this.prototype.template = template |
| 33 | this.prototype.furthestCourseDayRangeRecent = 60 |
| 34 | this.prototype.furthestCourseDayRange = 365 |
| 35 | this.prototype.lineColors = ['red', 'blue', 'green', 'purple', 'goldenrod', 'brown', 'darkcyan'] |
| 36 | this.prototype.minSchoolCount = 20 |
| 37 | this.prototype.allTimeStartDate = new Date('2014-11-12') |
| 38 | } |
| 39 | |
| 40 | initialize () { |
| 41 | this.activeClasses = [] |