mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
16 lines
333 B
JavaScript
16 lines
333 B
JavaScript
|
'use strict';
|
||
|
|
||
|
define([
|
||
|
'app', 'Settings/SettingsModel'
|
||
|
|
||
|
], function () {
|
||
|
|
||
|
NzbDrone.Settings.System.SystemView = Backbone.Marionette.ItemView.extend({
|
||
|
template: 'Settings/System/SystemTemplate',
|
||
|
|
||
|
onRender: function () {
|
||
|
NzbDrone.ModelBinder.bind(this.model, this.el);
|
||
|
}
|
||
|
});
|
||
|
});
|