mirror of
https://github.com/Readarr/Readarr.git
synced 2026-02-06 04:01:04 -05:00
New: Updated UI New: Mobile browser support Fixed: /favicon.ico will return the favicon now
28 lines
765 B
JavaScript
28 lines
765 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, downloadClientCollection: this.model.collection });
|
|
AppLayout.modalRegion.show(view);
|
|
}
|
|
});
|
|
});
|