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.
13 lines
443 B
13 lines
443 B
'use strict';
|
|
|
|
define(['app', 'Series/Index/List/ItemView', 'Config'], function () {
|
|
|
|
NzbDrone.Series.Index.List.CollectionView = Backbone.Marionette.CompositeView.extend({
|
|
itemView : NzbDrone.Series.Index.List.ItemView,
|
|
itemViewContainer : '#x-series-list',
|
|
template : 'Series/Index/List/CollectionTemplate'
|
|
});
|
|
|
|
return NzbDrone.Series.Index.List.CollectionView;
|
|
});
|