From ffda032751f8b5566825b93bca4ec3a9446c0502 Mon Sep 17 00:00:00 2001 From: Keivan Beigi Date: Fri, 28 Jun 2013 16:36:25 -0700 Subject: [PATCH] fixed this time :D --- UI/Series/Index/SeriesIndexLayout.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UI/Series/Index/SeriesIndexLayout.js b/UI/Series/Index/SeriesIndexLayout.js index 9d0801f6f..5497513d9 100644 --- a/UI/Series/Index/SeriesIndexLayout.js +++ b/UI/Series/Index/SeriesIndexLayout.js @@ -135,7 +135,7 @@ define( this.seriesRegion.show(new EmptyView()); this.toolbar.close(); } - else if (this.currentView && !this.currentView.isClosed) { + else { this.currentView.collection = SeriesCollection; this.seriesRegion.show(this.currentView); @@ -145,9 +145,9 @@ define( onShow: function () { + this._showToolbar(); this._renderView(); this._fetchCollection(); - this._showToolbar(); },