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.
Sonarr/src/UI/AddSeries/RootFolders/RootFolderCollectionView.js

16 lines
416 B

10 years ago
'use strict';
11 years ago
define(
[
'marionette',
'AddSeries/RootFolders/RootFolderItemView'
11 years ago
], function (Marionette, RootFolderItemView) {
return Marionette.CompositeView.extend({
template : 'AddSeries/RootFolders/RootFolderCollectionViewTemplate',
itemViewContainer : '.x-root-folders',
itemView : RootFolderItemView
11 years ago
});
});