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

fixes around saving page size

This commit is contained in:
Luke Pulverenti 2013-05-15 15:40:47 -04:00
parent d12a273620
commit 8ee91b74ab
19 changed files with 370 additions and 268 deletions

View file

@ -796,7 +796,8 @@
var recordsEnd = Math.min(query.StartIndex + query.Limit, totalRecordCount);
var showControls = totalRecordCount > query.Limit;
// 20 is the minimum page size
var showControls = totalRecordCount > 20;
html += '<div class="listPaging">';