fix icon item info

This commit is contained in:
rolux 2013-03-03 12:38:41 +00:00
parent 8d05596daf
commit b1a4924063
3 changed files with 15 additions and 0 deletions

View file

@ -90,6 +90,9 @@ pandora.ui.browser = function() {
)['format' + Ox.toTitleCase(format.type)].apply( )['format' + Ox.toTitleCase(format.type)].apply(
this, [data[sortKey]].concat(format.args || []) this, [data[sortKey]].concat(format.args || [])
); );
if (sortKey == 'rightslevel') {
info.css({width: '96px'});
}
} else { } else {
info = data[sortKey]; info = data[sortKey];
} }

View file

@ -47,6 +47,9 @@ pandora.ui.clipList = function(videoRatio) {
)['format' + Ox.toTitleCase(format.type)].apply( )['format' + Ox.toTitleCase(format.type)].apply(
this, [data[sortKey]].concat(format.args || []) this, [data[sortKey]].concat(format.args || [])
); );
if (sortKey == 'rightslevel') {
info.css({width: '96px'});
}
} else { } else {
info = data[sortKey]; info = data[sortKey];
} }

View file

@ -142,6 +142,9 @@ pandora.ui.list = function() {
)['format' + Ox.toTitleCase(format.type)].apply( )['format' + Ox.toTitleCase(format.type)].apply(
this, [data[sortKey]].concat(format.args || []) this, [data[sortKey]].concat(format.args || [])
); );
if (sortKey == 'rightslevel') {
info.css({width: '96px'});
}
} else { } else {
info = data[sortKey]; info = data[sortKey];
} }
@ -197,6 +200,9 @@ pandora.ui.list = function() {
)['format' + Ox.toTitleCase(format.type)].apply( )['format' + Ox.toTitleCase(format.type)].apply(
this, [data[sortKey]].concat(format.args || []) this, [data[sortKey]].concat(format.args || [])
); );
if (sortKey == 'rightslevel') {
info.css({width: '96px'});
}
} else { } else {
info = data[sortKey]; info = data[sortKey];
} }
@ -279,6 +285,9 @@ pandora.ui.list = function() {
)['format' + Ox.toTitleCase(format.type)].apply( )['format' + Ox.toTitleCase(format.type)].apply(
this, [data[sortKey]].concat(format.args || []) this, [data[sortKey]].concat(format.args || [])
); );
if (sortKey == 'rightslevel') {
info.css({width: '96px'});
}
} else { } else {
info = data[sortKey]; info = data[sortKey];
} }