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

reduce star rating sizes

This commit is contained in:
Luke Pulverenti 2013-04-19 19:45:27 -04:00
parent 22ee826cd7
commit a673f90a45
4 changed files with 18 additions and 12 deletions

View file

@ -497,7 +497,9 @@
html += '<div class="listPaging">';
html += '<span style="margin-right: 10px;">';
html += (query.StartIndex + 1) + '-' + recordsEnd + ' of ' + totalRecordCount;
var startAtDisplay = totalRecordCount ? query.StartIndex + 1 : 0;
html += startAtDisplay + '-' + recordsEnd + ' of ' + totalRecordCount;
if (showControls) {
html += ', page ' + dropdownHtml + ' of ' + pageCount;
@ -853,7 +855,7 @@
var miscInfo = [];
if (item.ProductionYear) {
if (item.ProductionYear && item.Type != "Episode") {
if (item.Status == "Continuing") {
miscInfo.push(item.ProductionYear + "-Present");
@ -875,7 +877,7 @@
miscInfo.push(parseInt(minutes) + "min");
}
if (item.MediaType && item.DisplayMediaType) {
if (item.MediaType && item.DisplayMediaType && item.DisplayMediaType != item.Type) {
miscInfo.push(item.DisplayMediaType);
}