1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-10 04:52:42 +01:00
Radarr/UI/Settings/Notifications/DeleteView.js

20 lines
536 B
JavaScript
Raw Normal View History

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
}
});
}
});
});