fix display of icon infos
This commit is contained in:
parent
9b95bb067e
commit
9a6c79842a
2 changed files with 12 additions and 8 deletions
|
@ -17,10 +17,13 @@ oml.ui.browser = function() {
|
||||||
width = Math.round(ratio >= 1 ? size : size * ratio),
|
width = Math.round(ratio >= 1 ? size : size * ratio),
|
||||||
height = Math.round(ratio <= 1 ? size : size / ratio),
|
height = Math.round(ratio <= 1 ? size : size / ratio),
|
||||||
sortKey = sort[0].key,
|
sortKey = sort[0].key,
|
||||||
info = Ox.getObjectById(oml.config.sortKeys, sortKey).format(
|
info = Ox.isNull(data[sortKey])
|
||||||
Ox.contains(['title', 'random'], sortKey)
|
? ''
|
||||||
? (data.author || '') : data[sortKey]
|
: Ox.contains(['title', 'random'], sortKey)
|
||||||
);
|
? (data.author || []).join(', ')
|
||||||
|
: Ox.getObjectById(
|
||||||
|
oml.config.sortKeys, sortKey
|
||||||
|
).format(data[sortKey]);
|
||||||
size = size || 64;
|
size = size || 64;
|
||||||
return {
|
return {
|
||||||
extra: ui.showIconInfo ? $('<div>')
|
extra: ui.showIconInfo ? $('<div>')
|
||||||
|
|
|
@ -18,10 +18,11 @@ oml.ui.gridView = function() {
|
||||||
sortKey = sort[0].key,
|
sortKey = sort[0].key,
|
||||||
info = Ox.isNull(data[sortKey])
|
info = Ox.isNull(data[sortKey])
|
||||||
? ''
|
? ''
|
||||||
: Ox.getObjectById(oml.config.sortKeys, sortKey).format(
|
: Ox.contains(['title', 'random'], sortKey)
|
||||||
Ox.contains(['title', 'random'], sortKey)
|
? (data.author || []).join(', ')
|
||||||
? (data.author || '') : data[sortKey]
|
: Ox.getObjectById(
|
||||||
);
|
oml.config.sortKeys, sortKey
|
||||||
|
).format(data[sortKey]);
|
||||||
size = size || 128;
|
size = size || 128;
|
||||||
return {
|
return {
|
||||||
extra: ui.showIconInfo ? $('<div>')
|
extra: ui.showIconInfo ? $('<div>')
|
||||||
|
|
Loading…
Reference in a new issue