Radarr/src/UI/System/Info/SystemInfoLayout.js
Mark McDowall 43a70f4479 Moved disk space and about to new info tab
New: Disk space visible in the UI under System Info
2013-10-11 16:18:04 -07:00

26 lines
682 B
JavaScript

'use strict';
define(
[
'backbone',
'marionette',
'System/Info/About/AboutView',
'System/Info/DiskSpace/DiskSpaceLayout'
], function (Backbone,
Marionette,
AboutView,
DiskSpaceLayout) {
return Marionette.Layout.extend({
template: 'System/Info/SystemInfoLayoutTemplate',
regions: {
about : '#about',
diskSpace: '#diskspace'
},
onRender: function () {
this.about.show(new AboutView());
this.diskSpace.show(new DiskSpaceLayout());
}
});
});