From 525e0a43048bd231547e5346729060bf5743793a Mon Sep 17 00:00:00 2001 From: rolux Date: Tue, 4 Feb 2014 09:00:38 +0000 Subject: [PATCH] fix #2175 (Manage Favorites/Featured doesn't open folder) --- static/js/folders.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/static/js/folders.js b/static/js/folders.js index 7782e4f5..a3b383a5 100644 --- a/static/js/folders.js +++ b/static/js/folders.js @@ -169,6 +169,7 @@ pandora.ui.folders = function(section) { pandora.$ui.folderList.favorite.replaceWith( pandora.$ui.folderBrowser.favorite = pandora.ui.folderBrowser('favorite', section) ); + pandora.$ui.folder[i].options({collapsed: false}); } else { listData = pandora.getListData(); if ( @@ -218,6 +219,7 @@ pandora.ui.folders = function(section) { pandora.$ui.folderList.featured.replaceWith( pandora.$ui.folderBrowser.featured = pandora.ui.folderBrowser('featured', section) ); + pandora.$ui.folder[i].options({collapsed: false}); } else { listData = pandora.getListData(); Ox.Log('', 'FEATURED', listData)