From eb6d6e74b0d3defae558e730ee63cd58c06eb41a Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Thu, 22 Aug 2013 18:52:19 -0700 Subject: [PATCH] Fixed add series referencing spinnerView --- UI/AddSeries/AddSeriesView.js | 6 +++--- UI/Episode/Summary/Layout.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/UI/AddSeries/AddSeriesView.js b/UI/AddSeries/AddSeriesView.js index 7a6fd002b..a28433c53 100644 --- a/UI/AddSeries/AddSeriesView.js +++ b/UI/AddSeries/AddSeriesView.js @@ -5,8 +5,8 @@ define( 'marionette', 'AddSeries/Collection', 'AddSeries/SearchResultCollectionView', - 'Shared/SpinnerView' - ], function (App, Marionette, AddSeriesCollection, SearchResultCollectionView, SpinnerView) { + 'Shared/LoadingView' + ], function (App, Marionette, AddSeriesCollection, SearchResultCollectionView, LoadingView) { return Marionette.Layout.extend({ template: 'AddSeries/AddSeriesTemplate', @@ -88,7 +88,7 @@ define( this.searchResult.close(); } else { - this.searchResult.show(new SpinnerView()); + this.searchResult.show(new LoadingView()); this.currentSearchPromise = this.collection.fetch({ data: { term: options.term } }).done(function () { diff --git a/UI/Episode/Summary/Layout.js b/UI/Episode/Summary/Layout.js index 9a92affe2..b263c5682 100644 --- a/UI/Episode/Summary/Layout.js +++ b/UI/Episode/Summary/Layout.js @@ -55,7 +55,7 @@ define( this.activity.show(new Backgrid.Grid({ collection: new Backbone.Collection(episodeFile), columns : this.columns, - className : 'table table-bordered' + className : 'table table-bordered'spinn })); }