renderGroup can return nothing
This commit is contained in:
parent
896b57810a
commit
0d51906dd8
1 changed files with 3 additions and 2 deletions
|
@ -373,7 +373,7 @@ pandora.ui.infoView = function(data) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Extra Metadata
|
// Extra Metadata
|
||||||
renderGroup([
|
var extra = renderGroup([
|
||||||
'presentedby',
|
'presentedby',
|
||||||
'coproducer',
|
'coproducer',
|
||||||
'associateproducer',
|
'associateproducer',
|
||||||
|
@ -385,7 +385,8 @@ pandora.ui.infoView = function(data) {
|
||||||
'screenplay',
|
'screenplay',
|
||||||
'dialogue',
|
'dialogue',
|
||||||
'adaptation'
|
'adaptation'
|
||||||
]).css({marginTop: '12px'});
|
])
|
||||||
|
extra && extra.css({marginTop: '12px'});
|
||||||
renderGroup([
|
renderGroup([
|
||||||
'musicdirector',
|
'musicdirector',
|
||||||
'backgroundmusic',
|
'backgroundmusic',
|
||||||
|
|
Loading…
Reference in a new issue