mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
15 lines
534 B
JavaScript
15 lines
534 B
JavaScript
'use strict';
|
|
|
|
define([
|
|
'Settings/ThingyAddCollectionView',
|
|
'Settings/ThingyHeaderGroupView',
|
|
'Settings/DownloadClient/Add/DownloadClientAddItemView'
|
|
], function (ThingyAddCollectionView, ThingyHeaderGroupView, AddItemView) {
|
|
|
|
return ThingyAddCollectionView.extend({
|
|
itemView : ThingyHeaderGroupView.extend({ itemView: AddItemView }),
|
|
itemViewContainer: '.add-download-client .items',
|
|
template : 'Settings/DownloadClient/Add/DownloadClientAddCollectionViewTemplate'
|
|
});
|
|
});
|