1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-03-09 05:17:05 +00:00
Radarr/NzbDrone.Backbone/Settings/Misc/MiscView.js
Mark McDowall 9bb383e2b8 Removed virtuals from ConfigService.
Settings UI taking shape.
2013-03-05 08:13:56 -08:00

15 lines
325 B
JavaScript

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