link publisher
This commit is contained in:
parent
2608a7978d
commit
cc48cc2f22
1 changed files with 8 additions and 1 deletions
|
@ -488,7 +488,14 @@ pandora.ui.documentInfoView = function(data, isMixed) {
|
||||||
}).join(', ');
|
}).join(', ');
|
||||||
} else if (listKeys.indexOf(key) > -1) {
|
} else if (listKeys.indexOf(key) > -1) {
|
||||||
ret = formatLink(value.split(', '), key);
|
ret = formatLink(value.split(', '), key);
|
||||||
} else if (['type', 'publisher', 'format', 'source', 'group'].indexOf(key) > -1) {
|
} else if ([
|
||||||
|
'format',
|
||||||
|
'group',
|
||||||
|
'publication',
|
||||||
|
'publisher',
|
||||||
|
'source',
|
||||||
|
'type'
|
||||||
|
].indexOf(key) > -1) {
|
||||||
ret = formatLink(value, key);
|
ret = formatLink(value, key);
|
||||||
} else {
|
} else {
|
||||||
if (isMixed[key]) {
|
if (isMixed[key]) {
|
||||||
|
|
Loading…
Reference in a new issue