1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Settings/Quality/Profile/QualityProfileView.js

40 lines
1.1 KiB
JavaScript
Raw Normal View History

2013-06-25 07:43:16 +03:00
'use strict';
define(
[
'app',
'marionette',
'Settings/Quality/Profile/EditQualityProfileView',
'Settings/Quality/Profile/DeleteView',
2013-06-25 03:41:32 +03:00
'Mixins/AsModelBoundView',
'Settings/Quality/Profile/AllowedLabeler'
], function (App, Marionette, EditProfileView, DeleteProfileView, AsModelBoundView) {
var view = Marionette.ItemView.extend({
template: 'Settings/Quality/Profile/QualityProfileTemplate',
2013-06-25 03:41:32 +03:00
tagName : 'li',
ui: {
'progressbar': '.progress .bar'
},
events: {
2013-06-25 03:41:32 +03:00
'click .x-edit' : '_editProfile',
'click .x-delete': '_deleteProfile'
},
2013-06-25 03:41:32 +03:00
_editProfile: function () {
var view = new EditProfileView({ model: this.model});
App.modalRegion.show(view);
},
2013-06-25 03:41:32 +03:00
_deleteProfile: function () {
var view = new DeleteProfileView({ model: this.model });
App.modalRegion.show(view);
}
});
return AsModelBoundView.call(view);
});