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