1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

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

This commit is contained in:
Leonardo Galli 2017-06-07 13:37:20 +02:00
parent accf8a9efa
commit 43446ee3d0
2 changed files with 14 additions and 4 deletions

View File

@ -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;

View File

@ -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;