mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
20 lines
526 B
JavaScript
20 lines
526 B
JavaScript
'use strict';
|
|
define(['app', 'marionette'], function (App, Marionette) {
|
|
return Marionette.ItemView.extend({
|
|
template: 'Settings/Notifications/DeleteTemplate',
|
|
|
|
events: {
|
|
'click .x-confirm-delete': '_removeIndexer'
|
|
},
|
|
|
|
_removeIndexer: function () {
|
|
this.model.destroy({
|
|
wait : true,
|
|
success: function () {
|
|
App.vent.trigger(App.Commands.CloseModalCommand);
|
|
}
|
|
});
|
|
}
|
|
});
|
|
});
|