mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-05 13:21:25 -05:00
27 lines
671 B
JavaScript
27 lines
671 B
JavaScript
'use strict';
|
|
|
|
define([
|
|
'AppLayout',
|
|
'marionette',
|
|
'Settings/DownloadClient/Edit/DownloadClientEditView'
|
|
], function (AppLayout, Marionette, EditView) {
|
|
|
|
return Marionette.ItemView.extend({
|
|
template: 'Settings/DownloadClient/DownloadClientItemViewTemplate',
|
|
tagName : 'li',
|
|
|
|
events: {
|
|
'click' : '_edit'
|
|
},
|
|
|
|
initialize: function () {
|
|
this.listenTo(this.model, 'sync', this.render);
|
|
},
|
|
|
|
_edit: function () {
|
|
var view = new EditView({ model: this.model, targetCollection: this.model.collection});
|
|
AppLayout.modalRegion.show(view);
|
|
}
|
|
});
|
|
});
|