|
@@ -154,12 +154,12 @@ function initDetail() {
|
|
|
if (data.genres == undefined || data.genres === '') {
|
|
if (data.genres == undefined || data.genres === '') {
|
|
|
$("#genres").text('--');
|
|
$("#genres").text('--');
|
|
|
} else {
|
|
} else {
|
|
|
- $("#genres").text(data.genres.replaceAll(",", " "));
|
|
|
|
|
|
|
+ $("#genres").text(data.genres.replaceAll(",", " | "));
|
|
|
}
|
|
}
|
|
|
if (data.cast == undefined || data.cast === '') {
|
|
if (data.cast == undefined || data.cast === '') {
|
|
|
$("#cast").text('--');
|
|
$("#cast").text('--');
|
|
|
} else {
|
|
} else {
|
|
|
- $("#cast").text(data.cast.replaceAll(",", " "));
|
|
|
|
|
|
|
+ $("#cast").text(data.cast.replaceAll(",", " | "));
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
$("#commentfirstspan").text(data.commentFirst);
|
|
$("#commentfirstspan").text(data.commentFirst);
|