2013-05-29 02:49:17 +00:00
|
|
|
'use strict';
|
2013-06-19 01:02:23 +00:00
|
|
|
define(['app', 'marionette'], function (App, Marionette) {
|
|
|
|
return Marionette.ItemView.extend({
|
2013-05-29 02:49:17 +00:00
|
|
|
template: 'Settings/Notifications/DeleteTemplate',
|
|
|
|
|
|
|
|
events: {
|
2013-06-27 07:37:39 +00:00
|
|
|
'click .x-confirm-delete': '_removeNotification'
|
2013-05-29 02:49:17 +00:00
|
|
|
},
|
|
|
|
|
2013-06-27 07:37:39 +00:00
|
|
|
_removeNotification: function () {
|
2013-05-29 02:49:17 +00:00
|
|
|
this.model.destroy({
|
|
|
|
wait : true,
|
2013-06-19 01:02:23 +00:00
|
|
|
success: function () {
|
2013-07-24 01:15:58 +00:00
|
|
|
App.vent.trigger(App.Commands.CloseModalCommand);
|
2013-05-29 02:49:17 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|