mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-28 02:37:40 +00:00
28 lines
751 B
JavaScript
28 lines
751 B
JavaScript
/// <reference path="../../app.js" />
|
|
/// <reference path="../../Series/SeriesModel.js" />
|
|
/// <reference path="../SearchResultCollection.js" />
|
|
|
|
NzbDrone.AddSeries.ExistingFolderItemView = Backbone.Marionette.ItemView.extend({
|
|
|
|
template: "AddSeries/ImportExistingSeries/ImportSeriesTemplate",
|
|
|
|
events: {
|
|
//'click .x-add': 'add'
|
|
},
|
|
|
|
});
|
|
|
|
NzbDrone.AddSeries.ExistingFolderListView = Backbone.Marionette.CollectionView.extend({
|
|
|
|
itemView: NzbDrone.AddSeries.ExistingFolderItemView,
|
|
|
|
initialize: function (options) {
|
|
|
|
if (this.collection === undefined) {
|
|
throw "root folder collection is required.";
|
|
}
|
|
|
|
this.listenTo(this.collection, 'reset', this.render, this);
|
|
},
|
|
|
|
});
|