mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
29 lines
893 B
JavaScript
29 lines
893 B
JavaScript
"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 }));
|
|
}
|
|
});
|
|
});
|
|
|