1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-28 02:40:01 +00:00
Radarr/UI/AddSeries/RootFolders/CollectionView.js
Keivan Beigi 24c77b4047 broken
2013-06-20 18:43:58 -07:00

16 lines
336 B
JavaScript

"use strict";
define(
[
'marionette',
'AddSeries/RootFolders/ItemView'
], function (Marionette, RootFolderItemView) {
return Marionette.CollectionView.extend({
itemView: RootFolderItemView,
tagName : 'table',
className: 'table table-hover'
});
});