1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +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-25 03:41:32 +03:00
template: 'Settings/Quality/Profile/DeleteTemplate',
events: {
'click .x-confirm-delete': '_removeProfile'
},
_removeProfile: function () {
this.model.destroy({
wait: true
}).done(function () {
2013-06-27 02:45:05 +03:00
App.modalRegion.closeModal();
});
}
});
});