2013-03-04 00:09:43 +00:00
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
define([
|
2013-03-29 23:28:58 +00:00
|
|
|
|
'app', 'Settings/SettingsModel'
|
2013-03-04 00:09:43 +00:00
|
|
|
|
|
|
|
|
|
], function () {
|
|
|
|
|
|
|
|
|
|
NzbDrone.Settings.System.SystemView = Backbone.Marionette.ItemView.extend({
|
|
|
|
|
template: 'Settings/System/SystemTemplate',
|
|
|
|
|
|
|
|
|
|
onRender: function () {
|
|
|
|
|
NzbDrone.ModelBinder.bind(this.model, this.el);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|