You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.1 KiB
32 lines
1.1 KiB
"use strict";
|
|
|
|
define(
|
|
[
|
|
'marionette',
|
|
'Settings/MediaManagement/Naming/View',
|
|
'Settings/MediaManagement/Sorting/View',
|
|
'Settings/MediaManagement/FileManagement/View'
|
|
], function (Marionette, NamingView, SortingView, FileManagementView) {
|
|
return Marionette.Layout.extend({
|
|
template: 'Settings/MediaManagement/LayoutTemplate',
|
|
|
|
regions: {
|
|
episodeNaming : '#episode-naming',
|
|
sorting : '#sorting',
|
|
fileManagement : '#file-management'
|
|
},
|
|
|
|
initialize: function (options) {
|
|
this.settings = options.settings;
|
|
this.namingSettings = options.namingSettings;
|
|
},
|
|
|
|
onShow: function () {
|
|
this.episodeNaming.show(new NamingView({ model: this.namingSettings }));
|
|
this.sorting.show(new SortingView({ model: this.settings }));
|
|
this.fileManagement.show(new FileManagementView({ model: this.settings }));
|
|
}
|
|
});
|
|
});
|
|
|