mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 18:42:42 +01:00
28de886bb1
fixed modals
25 lines
571 B
JavaScript
25 lines
571 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'app',
|
|
'marionette'
|
|
], function (App, Marionette) {
|
|
|
|
return Marionette.ItemView.extend({
|
|
template: 'Settings/Quality/Profile/DeleteTemplate',
|
|
|
|
events: {
|
|
'click .x-confirm-delete': '_removeProfile'
|
|
},
|
|
|
|
_removeProfile: function () {
|
|
|
|
this.model.destroy({
|
|
wait: true
|
|
}).done(function () {
|
|
App.modalRegion.closeModal();
|
|
});
|
|
}
|
|
});
|
|
});
|