mirror of
https://github.com/Radarr/Radarr
synced 2025-12-06 08:28:50 +01:00
15 lines
416 B
JavaScript
15 lines
416 B
JavaScript
'use strict';
|
|
|
|
define(
|
|
[
|
|
'marionette',
|
|
'AddSeries/RootFolders/RootFolderItemView'
|
|
], function (Marionette, RootFolderItemView) {
|
|
|
|
|
|
return Marionette.CompositeView.extend({
|
|
template : 'AddSeries/RootFolders/RootFolderCollectionViewTemplate',
|
|
itemViewContainer : '.x-root-folders',
|
|
itemView : RootFolderItemView
|
|
});
|
|
});
|