()
| 16 | module.exports = (ModelModal = (function () { |
| 17 | ModelModal = class ModelModal extends ModalView { |
| 18 | static initClass () { |
| 19 | this.prototype.id = 'model-modal' |
| 20 | this.prototype.template = template |
| 21 | this.prototype.plain = true |
| 22 | |
| 23 | this.prototype.events = { 'click .save-model': 'onSaveModel' } |
| 24 | } |
| 25 | |
| 26 | constructor (options = {}) { |
| 27 | super(options) |