1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-03-14 16:11:23 +00:00
Sonarr/UI/Settings/Notifications/DeleteView.js

20 lines
536 B
JavaScript
Raw Normal View History

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