2013-05-20 04:19:54 +00:00
|
|
|
|
'use strict';
|
|
|
|
|
define(['app', 'Settings/Notifications/ItemView'], function () {
|
|
|
|
|
NzbDrone.Settings.Notifications.CollectionView = Backbone.Marionette.CompositeView.extend({
|
|
|
|
|
itemView : NzbDrone.Settings.Notifications.ItemView,
|
2013-05-21 06:16:19 +00:00
|
|
|
|
itemViewContainer : 'tbody',
|
2013-05-20 04:19:54 +00:00
|
|
|
|
template : 'Settings/Notifications/CollectionTemplate'
|
|
|
|
|
});
|
|
|
|
|
});
|