fix folderBrowserList height, fixes #2305

This commit is contained in:
j 2014-02-15 07:30:14 +00:00
parent 00b140b9f1
commit cfdb146dd3

View file

@ -189,15 +189,17 @@ pandora.ui.folderBrowserList = function(id, section) {
}
},
init: function(data) {
var height = 16 + data.items * 16,
hasItems = pandora.site.sectionFolders[section][i].hasItems;
pandora.site.sectionFolders[section][i].items = data.items;
pandora.$ui.folder[i].$content.css({
height: 40 + (data.items || 1) * 16 + 'px'
height: (data.items ? 24 : hasItems ? 40 : 0) + height + 'px'
});
pandora.$ui.folderList[id].css({
height: 16 + data.items * 16 + 'px'
height: height + 'px'
});
pandora.$ui.folderBrowser[id].size(2, data.items ? 0 : 16);
if (Ox.isBoolean(pandora.site.sectionFolders[section][i].hasItems)) {
if (Ox.isBoolean(hasItems)) {
// hasItems is set, so we're not on first init
pandora.resizeFolders();
}