mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-04 22:10:52 +00:00
9bb383e2b8
Settings UI taking shape.
15 lines
325 B
JavaScript
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);
|
|
}
|
|
});
|
|
});
|