forked from 0x2620/pandora
fix folderBrowserList height, fixes #2305
This commit is contained in:
parent
00b140b9f1
commit
cfdb146dd3
1 changed files with 5 additions and 3 deletions
|
@ -189,15 +189,17 @@ pandora.ui.folderBrowserList = function(id, section) {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
init: function(data) {
|
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.site.sectionFolders[section][i].items = data.items;
|
||||||
pandora.$ui.folder[i].$content.css({
|
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({
|
pandora.$ui.folderList[id].css({
|
||||||
height: 16 + data.items * 16 + 'px'
|
height: height + 'px'
|
||||||
});
|
});
|
||||||
pandora.$ui.folderBrowser[id].size(2, data.items ? 0 : 16);
|
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
|
// hasItems is set, so we're not on first init
|
||||||
pandora.resizeFolders();
|
pandora.resizeFolders();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue