0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00
ghost/core/client/controllers/modals/delete-post.js

43 lines
1.4 KiB
JavaScript
Raw Normal View History

2014-03-30 23:07:05 -05:00
/*global alert */
var DeletePostController = Ember.Controller.extend({
confirm: {
accept: {
func: function () {
// @TODO: make this real
alert('Deleting post');
// self.model.destroy({
// wait: true
// }).then(function () {
// // Redirect to content screen if deleting post from editor.
// if (window.location.pathname.indexOf('editor') > -1) {
// window.location = Ghost.paths.subdir + '/ghost/content/';
// }
// Ghost.notifications.addItem({
// type: 'success',
// message: 'Your post has been deleted.',
// status: 'passive'
// });
// }, function () {
// Ghost.notifications.addItem({
// type: 'error',
// message: 'Your post could not be deleted. Please try again.',
// status: 'passive'
// });
// });
},
text: 'Delete',
buttonClass: 'button-delete'
2014-03-30 23:07:05 -05:00
},
reject: {
func: function () {
return true;
},
text: 'Cancel',
buttonClass: 'button'
2014-03-30 23:07:05 -05:00
}
}
2014-03-30 23:07:05 -05:00
});
export default DeletePostController;