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