0xDB info view: make studios depend on canSeeAllMetadata
This commit is contained in:
parent
f230236fa3
commit
2734eb93f2
1 changed files with 10 additions and 8 deletions
|
@ -422,14 +422,16 @@ pandora.ui.infoView = function(data) {
|
||||||
)
|
)
|
||||||
.appendTo($text);
|
.appendTo($text);
|
||||||
|
|
||||||
data.productionCompany && $('<div>')
|
if (data.productionCompany && canSeeAllMetadata) {
|
||||||
.addClass('OxSelectable')
|
$('<div>')
|
||||||
.css(css)
|
.addClass('OxSelectable')
|
||||||
.html(
|
.css(css)
|
||||||
formatKey('studio')
|
.html(
|
||||||
+ formatValue(data.productionCompany, 'productionCompany')
|
formatKey('studio')
|
||||||
)
|
+ formatValue(data.productionCompany, 'productionCompany')
|
||||||
.appendTo($text);
|
)
|
||||||
|
.appendTo($text);
|
||||||
|
}
|
||||||
|
|
||||||
if (data.genre || (data.keyword && canSeeAllMetadata)) {
|
if (data.genre || (data.keyword && canSeeAllMetadata)) {
|
||||||
$div = $('<div>')
|
$div = $('<div>')
|
||||||
|
|
Loading…
Reference in a new issue