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.
Lidarr/src/UI/Settings/Metadata/MetadataCollectionView.js

9 lines
349 B

var AppLayout = require('../../AppLayout');
var Marionette = require('marionette');
var MetadataItemView = require('./MetadataItemView');
module.exports = Marionette.CompositeView.extend({
itemView : MetadataItemView,
itemViewContainer : '#x-metadata',
template : 'Settings/Metadata/MetadataCollectionViewTemplate'
});