1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00
Sonarr/UI/Settings/Quality/Profile/DeleteView.js

25 lines
571 B
JavaScript
Raw Normal View History

'use strict';
define(
[
'app',
'marionette'
], function (App, Marionette) {
return Marionette.ItemView.extend({
2013-06-24 17:41:32 -07:00
template: 'Settings/Quality/Profile/DeleteTemplate',
events: {
'click .x-confirm-delete': '_removeProfile'
},
_removeProfile: function () {
this.model.destroy({
wait: true
}).done(function () {
2013-06-26 16:45:05 -07:00
App.modalRegion.closeModal();
});
}
});
});