()
| 45 | module.exports = (I18NHomeView = (function () { |
| 46 | I18NHomeView = class I18NHomeView extends RootView { |
| 47 | static initClass () { |
| 48 | this.prototype.id = 'i18n-home-view' |
| 49 | this.prototype.template = template |
| 50 | |
| 51 | this.prototype.events = { |
| 52 | 'change #language-select': 'onLanguageSelectChanged', |
| 53 | 'change #type-select': 'onTypeSelectChanged' |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | constructor (options) { |
| 58 | super(options) |