fixed this time :D

This commit is contained in:
Keivan Beigi 2013-06-28 16:36:25 -07:00
parent 54d2da95ed
commit ffda032751
1 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ define(
this.seriesRegion.show(new EmptyView()); this.seriesRegion.show(new EmptyView());
this.toolbar.close(); this.toolbar.close();
} }
else if (this.currentView && !this.currentView.isClosed) { else {
this.currentView.collection = SeriesCollection; this.currentView.collection = SeriesCollection;
this.seriesRegion.show(this.currentView); this.seriesRegion.show(this.currentView);
@ -145,9 +145,9 @@ define(
onShow: function () { onShow: function () {
this._showToolbar();
this._renderView(); this._renderView();
this._fetchCollection(); this._fetchCollection();
this._showToolbar();
}, },