()
| 26 | module.exports = (CourseEditView = (function () { |
| 27 | CourseEditView = class CourseEditView extends RootView { |
| 28 | static initClass () { |
| 29 | this.prototype.id = 'editor-course-edit-view' |
| 30 | this.prototype.template = template |
| 31 | |
| 32 | this.prototype.events = { |
| 33 | 'click #save-button': 'onClickSaveButton', |
| 34 | 'click #i18n-button': 'onPopulateI18N' |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | constructor (options, courseID) { |
| 39 | super(options) |