1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 00:12:30 +01:00
Sonarr/UI/AddSeries/SearchResultCollectionView.js

31 lines
728 B
JavaScript
Raw Normal View History

2013-06-21 03:43:58 +02:00
'use strict';
define(
[
'marionette',
'AddSeries/SearchResultView',
2013-06-30 21:57:26 +02:00
], function (Marionette, SearchResultView) {
2013-06-21 03:43:58 +02:00
return Marionette.CollectionView.extend({
itemView: SearchResultView,
initialize: function (options) {
this.isExisting = options.isExisting;
},
showAll: function () {
this.showingAll = true;
this.render();
},
2013-06-30 21:57:26 +02:00
appendHtml: function (collectionView, itemView, index) {
if (!this.isExisting || this.showingAll || index === 0) {
collectionView.$el.append(itemView.el);
}
2013-06-21 03:43:58 +02:00
}
});
});