mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-06 11:02:40 +01:00
663160c06a
renamed NzbDrone.Backbone to UI
46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
define([
|
|
'app',
|
|
'Quality/QualityProfileCollection',
|
|
'Settings/Quality/Profile/EditQualityProfileView'
|
|
|
|
], function () {
|
|
|
|
NzbDrone.Settings.Quality.Profile.QualityProfileView = Backbone.Marionette.ItemView.extend({
|
|
template: 'Settings/Quality/Profile/QualityProfileTemplate',
|
|
tagName: 'tr',
|
|
|
|
ui: {
|
|
'progressbar': '.progress .bar'
|
|
},
|
|
|
|
events: {
|
|
'click .x-edit': 'editSeries',
|
|
'click .x-remove': 'removeSeries'
|
|
},
|
|
|
|
initialize: function () {
|
|
},
|
|
|
|
onRender: function () {
|
|
NzbDrone.ModelBinder.bind(this.model, this.el);
|
|
},
|
|
|
|
editSeries: function () {
|
|
var view = new NzbDrone.Settings.Quality.Profile.EditQualityProfileView({ model: this.model});
|
|
|
|
NzbDrone.vent.trigger(NzbDrone.Events.OpenModalDialog, {
|
|
view: view
|
|
});
|
|
},
|
|
|
|
removeSeries: function () {
|
|
var view = new NzbDrone.Series.Delete.DeleteSeriesView({ model: this.model });
|
|
NzbDrone.vent.trigger(NzbDrone.Events.OpenModalDialog, {
|
|
view: view
|
|
});
|
|
}
|
|
});
|
|
});
|