1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-07 15:20:58 +02:00

16 lines
365 B
JavaScript
Raw Normal View History

2013-03-03 16:09:43 -08:00
'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);
}
});
});