aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/projects/delete-view.js
blob: 53494658fd89ad5c6f9d4d3364d0dcc0484ace69 (plain)
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();
  }
});