1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

some image organization

This commit is contained in:
Luke Pulverenti 2013-03-26 13:04:50 -04:00
parent e45ea7aa7b
commit 7955da14c8
21 changed files with 14 additions and 14 deletions

View file

@ -99,15 +99,15 @@
});
}
else if (item.MediaType == "Audio") {
url = "css/images/itemDetails/audioDefault.png";
url = "css/images/items/detail/audio.png";
useBackgroundColor = true;
}
else if (item.MediaType == "Game") {
url = "css/images/itemDetails/gameDefault.png";
url = "css/images/items/detail/game.png";
useBackgroundColor = true;
}
else {
url = "css/images/itemDetails/videoDefault.png";
url = "css/images/items/detail/video.png";
useBackgroundColor = true;
}
@ -290,7 +290,7 @@
html += '<img src="' + imgUrl + '" />';
} else {
html += '<img src="css/images/itemDetails/videoDefault.png"/>';
html += '<img src="css/images/items/detail/video.png"/>';
}
html += '<div class="posterViewItemText posterViewItemPrimaryText">' + chapter_name + '</div>';