mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fixed missing files
This commit is contained in:
parent
358df5f81c
commit
9311eca340
8 changed files with 13 additions and 12 deletions
|
@ -504,7 +504,7 @@
|
|||
}
|
||||
},
|
||||
|
||||
getPagingHtml: function (query, totalRecordCount) {
|
||||
getPagingHtml: function (query, totalRecordCount, isTop) {
|
||||
|
||||
var html = '';
|
||||
|
||||
|
@ -524,7 +524,7 @@
|
|||
|
||||
var recordsEnd = Math.min(query.StartIndex + query.Limit, totalRecordCount);
|
||||
|
||||
html += '<div class="listPaging">';
|
||||
html += isTop ? '<div class="listPaging topListPaging">' : '<div class="listPaging">';
|
||||
html += 'Results ' + (query.StartIndex + 1) + '-' + recordsEnd + ' of ' + totalRecordCount + ', page ' + dropdownHtml + ' of ' + pageCount;
|
||||
html += '</div>';
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue