1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 16:32:56 +01:00
Sonarr/NzbDrone.Backbone/Settings/DownloadClient/DownloadClientView.js
Mark McDowall 9bb383e2b8 Removed virtuals from ConfigService.
Settings UI taking shape.
2013-03-05 08:13:56 -08:00

16 lines
365 B
JavaScript

'use strict';
define([
'app', 'Settings/SettingsModel'
], function () {
NzbDrone.Settings.DownloadClient.DownloadClientView = Backbone.Marionette.ItemView.extend({
template: 'Settings/DownloadClient/DownloadClientTemplate',
onRender: function () {
NzbDrone.ModelBinder.bind(this.model, this.el);
}
});
});