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

cloud sync updates

This commit is contained in:
Luke Pulverenti 2015-02-28 08:42:47 -05:00
parent c7aae76f72
commit af26d6f9cb
3 changed files with 24 additions and 4 deletions

View file

@ -1950,12 +1950,12 @@
if (item.CriticRating != null) {
if (item.CriticRating >= 60) {
html += '<div class="fresh rottentomatoesicon"></div>';
html += '<div class="fresh rottentomatoesicon" title="Rotten Tomatoes"></div>';
} else {
html += '<div class="rotten rottentomatoesicon"></div>';
html += '<div class="rotten rottentomatoesicon" title="Rotten Tomatoes"></div>';
}
html += '<div class="criticRating">' + item.CriticRating + '%</div>';
html += '<div class="criticRating" title="Rotten Tomatoes">' + item.CriticRating + '%</div>';
}
if (item.Metascore && metascore !== false) {