Fixed: Forgot to include some js files in the last commit

Leonardo Galli 7 years ago
parent accf8a9efa
commit 43446ee3d0

@ -7,7 +7,6 @@ var AddFromListCollection = require('./List/AddFromListCollection');
var SearchResultCollectionView = require('./SearchResultCollectionView');
var DiscoverableListDropdownView = require("./DiscoverableListDropdownView");
var DiscoverableListCollection = require("./DiscoverableListCollection");
var DiscoverableListCollectionView = require("./DiscoverableListCollectionView");
var DiscoverMoviesCollection = require("./DiscoverMoviesCollection");
var EmptyView = require('./EmptyView');
var NotFoundView = require('./NotFoundView');
@ -72,9 +71,9 @@ module.exports = Marionette.Layout.extend({
});*/
this.listenTo(DiscoverableListCollection, 'sync', this._showListDropdown);
this.listsDropdown = new DiscoverableListCollectionView({
/*this.listsDropdown = new DiscoverableListCollectionView({
collection : DiscoverableListCollection
})
})*/
this.throttledSearch = _.debounce(this.search, 1000, { trailing : true }).bind(this);
@ -263,7 +262,7 @@ module.exports = Marionette.Layout.extend({
this.collection = new DiscoverMoviesCollection();
this.resultCollectionView.collection = this.collection;
}
this.listenTo(this.collection, 'sync', this._showResults);
this.searchResult.show(new LoadingView());
this.collection.action = action;

@ -0,0 +1,11 @@
var Backbone = require('backbone');
var NetImportModel = require('../Settings/NetImport/NetImportModel');
var _ = require('underscore');
var DiscoverableCollection = Backbone.Collection.extend({
url : window.NzbDrone.ApiRoot + '/movies/discover/lists',
model : NetImportModel,
});
var collection = new DiscoverableCollection();
collection.fetch();
module.exports = collection;
Loading…
Cancel
Save