gitlab-org--gitlab-foss/app/assets/javascripts/boards/components/board_delete.js

22 lines
444 B
JavaScript
Raw Normal View History

/* eslint-disable comma-dangle, space-before-function-paren, no-alert */
2017-03-17 13:21:25 -04:00
import Vue from 'vue';
2017-04-10 19:52:46 -04:00
window.gl = window.gl || {};
window.gl.issueBoards = window.gl.issueBoards || {};
2017-04-10 19:52:46 -04:00
gl.issueBoards.BoardDelete = Vue.extend({
props: {
list: Object
},
methods: {
deleteBoard () {
$(this.$el).tooltip('hide');
2016-07-28 07:33:04 -04:00
2017-04-10 19:52:46 -04:00
if (confirm('Are you sure you want to delete this list?')) {
this.list.destroy();
2016-07-28 07:33:04 -04:00
}
}
2017-04-10 19:52:46 -04:00
}
});