1 2 3 4 5 6 7 8 9 10 11 12 13 14
import ModalForm from '../../components/common/modal-form'; import Template from './templates/projects-delete.hbs'; export default ModalForm.extend({ template: Template, onFormSubmit: function () { ModalForm.prototype.onFormSubmit.apply(this, arguments); this.options.deleteProjects(); this.destroy(); } });