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.
29 lines
893 B
29 lines
893 B
"use strict";
|
|
|
|
define(
|
|
[
|
|
'marionette',
|
|
'Settings/Indexers/CollectionView',
|
|
'Settings/Indexers/Options/View'
|
|
], function (Marionette, CollectionView, OptionsView) {
|
|
return Marionette.Layout.extend({
|
|
template: 'Settings/Indexers/LayoutTemplate',
|
|
|
|
regions: {
|
|
indexersRegion : '#indexers-collection',
|
|
indexerOptions : '#indexer-options'
|
|
},
|
|
|
|
initialize: function (options) {
|
|
this.settings = options.settings;
|
|
this.indexersCollection = options.indexersCollection;
|
|
},
|
|
|
|
onShow: function () {
|
|
this.indexersRegion.show(new CollectionView({ collection: this.indexersCollection }));
|
|
this.indexerOptions.show(new OptionsView({ model: this.settings }));
|
|
}
|
|
});
|
|
});
|
|
|