forked from 0x2620/pandora
fix folder lists
This commit is contained in:
parent
541de3b558
commit
d5875c1ad4
4 changed files with 8 additions and 3 deletions
|
@ -72,7 +72,7 @@ pandora.ui.allItems = function() {
|
||||||
}, function(result) {
|
}, function(result) {
|
||||||
that.update(result.data.items);
|
that.update(result.data.items);
|
||||||
});
|
});
|
||||||
} else if (pandora.user.ui.section == 'text') {
|
} else if (pandora.user.ui.section == 'texts') {
|
||||||
Ox.Button({
|
Ox.Button({
|
||||||
style: 'symbol',
|
style: 'symbol',
|
||||||
title: 'file',
|
title: 'file',
|
||||||
|
|
|
@ -70,7 +70,9 @@ pandora.ui.folderBrowserList = function(id) {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
clickable: function(data) {
|
clickable: function(data) {
|
||||||
return data.type == 'smart' || data.user == pandora.user.username;
|
return pandora.user.ui.section == 'items' && (
|
||||||
|
data.type == 'smart' || data.user == pandora.user.username
|
||||||
|
);
|
||||||
},
|
},
|
||||||
format: function(value, data) {
|
format: function(value, data) {
|
||||||
return $('<img>')
|
return $('<img>')
|
||||||
|
|
|
@ -76,7 +76,9 @@ pandora.ui.folderList = function(id) {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
clickable: function(data) {
|
clickable: function(data) {
|
||||||
return data.type == 'smart' || data.user == pandora.user.username;
|
return pandora.user.ui.section == 'items' && (
|
||||||
|
data.type == 'smart' || data.user == pandora.user.username
|
||||||
|
);
|
||||||
},
|
},
|
||||||
format: function(value, data) {
|
format: function(value, data) {
|
||||||
return $('<img>')
|
return $('<img>')
|
||||||
|
|
|
@ -1236,6 +1236,7 @@ pandora.resizeFolders = function() {
|
||||||
pandora.user.ui.section == 'items' ? 96 : 32
|
pandora.user.ui.section == 'items' ? 96 : 32
|
||||||
),
|
),
|
||||||
columnWidth = {};
|
columnWidth = {};
|
||||||
|
Ox.print('WIDTH:::', width)
|
||||||
columnWidth.user = Math.round(width * 0.4);
|
columnWidth.user = Math.round(width * 0.4);
|
||||||
columnWidth.name = width - columnWidth.user;
|
columnWidth.name = width - columnWidth.user;
|
||||||
pandora.$ui.allItems.resizeElement(width - 8);
|
pandora.$ui.allItems.resizeElement(width - 8);
|
||||||
|
|
Loading…
Reference in a new issue