fix formatting of arrays on info page

This commit is contained in:
rlx 2016-01-08 17:27:37 +05:30
parent 165f9650ec
commit 54636fbc63

View file

@ -319,7 +319,9 @@ oml.ui.infoView = function(identifyData) {
} }
function splitValue(value) { function splitValue(value) {
return Ox.encodeHTMLEntities(Ox.decodeHTMLEntities(value).split('; ')); return Ox.decodeHTMLEntities(value).split('; ').map(function(value) {
return Ox.encodeHTMLEntities(value);
});
} }
function toggleCoverSize(ratio) { function toggleCoverSize(ratio) {