prowlarr/src/UI/Commands/CommandMessengerCollectionView.js
2013-10-08 18:43:41 -07:00

14 lines
409 B
JavaScript

'use strict';
define(
[
'marionette',
'Commands/CommandCollection',
'Commands/CommandMessengerItemView'
], function (Marionette, commandCollection, CommandMessengerItemView) {
var CollectionView = Marionette.CollectionView.extend({
itemView: CommandMessengerItemView
});
return new CollectionView({collection: commandCollection});
});