Sonarr/UI/Settings/Notifications/DeleteView.js

20 lines
514 B
JavaScript
Raw Normal View History

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: {
'click .x-confirm-delete': 'removeNotification'
},
removeNotification: function () {
this.model.destroy({
wait : true,
2013-06-19 01:02:23 +00:00
success: function () {
App.modalRegion.closeModal();
2013-05-29 02:49:17 +00:00
}
});
}
});
});