forked from 0x2620/pandora
dont fail on infoView id array data is string
This commit is contained in:
parent
b14f729768
commit
086fce31ea
3 changed files with 18 additions and 0 deletions
|
@ -231,6 +231,12 @@ pandora.ui.infoView = function(data) {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
listKeys.forEach(function(key) {
|
||||||
|
if (Ox.isString(data[key])) {
|
||||||
|
data[key] = [data[key]];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
// Title -------------------------------------------------------------------
|
// Title -------------------------------------------------------------------
|
||||||
|
|
||||||
$('<div>')
|
$('<div>')
|
||||||
|
|
|
@ -188,6 +188,12 @@ pandora.ui.infoView = function(data) {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
listKeys.forEach(function(key) {
|
||||||
|
if (Ox.isString(data[key])) {
|
||||||
|
data[key] = [data[key]];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
if (!canEdit) {
|
if (!canEdit) {
|
||||||
pandora.createLinks($info);
|
pandora.createLinks($info);
|
||||||
}
|
}
|
||||||
|
|
|
@ -210,6 +210,12 @@ pandora.ui.infoView = function(data) {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
listKeys.forEach(function(key) {
|
||||||
|
if (Ox.isString(data[key])) {
|
||||||
|
data[key] = [data[key]];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
if (!canEdit) {
|
if (!canEdit) {
|
||||||
pandora.createLinks($info);
|
pandora.createLinks($info);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue