0xDB info view: make studios depend on canSeeAllMetadata

This commit is contained in:
rolux 2013-08-01 14:56:37 +00:00
parent f230236fa3
commit 2734eb93f2

View file

@ -422,7 +422,8 @@ pandora.ui.infoView = function(data) {
) )
.appendTo($text); .appendTo($text);
data.productionCompany && $('<div>') if (data.productionCompany && canSeeAllMetadata) {
$('<div>')
.addClass('OxSelectable') .addClass('OxSelectable')
.css(css) .css(css)
.html( .html(
@ -430,6 +431,7 @@ pandora.ui.infoView = function(data) {
+ formatValue(data.productionCompany, 'productionCompany') + formatValue(data.productionCompany, 'productionCompany')
) )
.appendTo($text); .appendTo($text);
}
if (data.genre || (data.keyword && canSeeAllMetadata)) { if (data.genre || (data.keyword && canSeeAllMetadata)) {
$div = $('<div>') $div = $('<div>')