1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-01 18:46:34 -04:00
Files
Radarr/src/UI/Commands/CommandMessengerCollectionView.js
2013-10-02 18:01:32 -07:00

16 lines
423 B
JavaScript

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