Files
Prowlarr/src/UI/Settings/DownloadClient/RemotePathMapping/RemotePathMappingDeleteView.js
T
2015-02-07 10:30:02 -08:00

15 lines
483 B
JavaScript

var vent = require('vent');
var Marionette = require('marionette');
module.exports = Marionette.ItemView.extend({
template : 'Settings/DownloadClient/RemotePathMapping/RemotePathMappingDeleteViewTemplate',
events : {"click .x-confirm-delete" : '_delete'},
_delete : function(){
this.model.destroy({
wait : true,
success : function(){
vent.trigger(vent.Commands.CloseModalCommand);
}
});
}
});