use newlines

This commit is contained in:
j 2018-09-12 19:29:33 +02:00
parent 61ac998180
commit a55a95d3b4
2 changed files with 2 additions and 1 deletions

View File

@ -14,6 +14,7 @@ examples (config.SITENAME.jsonc) that are part of this pan.do/ra distribution.
annotations by specific users can be turned on and off annotations by specific users can be turned on and off
*/ */
"annotations": { "annotations": {
"separator": "<br>",
"showUsers": true "showUsers": true
}, },
/* /*

View File

@ -581,7 +581,7 @@ pandora.ui.infoView = function(data) {
+ title.substr(match[0].length); + title.substr(match[0].length);
} }
return title + ( return title + (
data.originalTitle && data.originalTitle != title data.originalTitle && data.originalTitle != title && data.originalTitle != 'untitled'
? ' ' + formatLight('(' + data.originalTitle + ')') : '' ? ' ' + formatLight('(' + data.originalTitle + ')') : ''
); );
} }