mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-19 21:46:43 -04: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'
|
|
});
|
|
});
|