()
| 50 | module.exports = (TestView = (TestView = (function () { |
| 51 | TestView = class TestView extends RootView { |
| 52 | static initClass () { |
| 53 | this.prototype.id = 'test-view' |
| 54 | this.prototype.template = template |
| 55 | this.prototype.reloadOnClose = true |
| 56 | this.prototype.className = 'style-flat' |
| 57 | |
| 58 | this.prototype.events = { |
| 59 | 'click #show-demos-btn': 'onClickShowDemosButton', |
| 60 | 'click #hide-demos-btn': 'onClickHideDemosButton' |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | // INITIALIZE |
| 65 |