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

added page size selection

This commit is contained in:
Luke Pulverenti 2013-04-27 18:52:41 -04:00
parent 56cb3118df
commit cb3107a2b6
23 changed files with 162 additions and 7 deletions

View file

@ -48,6 +48,12 @@
reloadItems(page);
});
$('.selectPageSize', page).on('change', function () {
query.Limit = parseInt(this.value);
query.StartIndex = 0;
reloadItems(page);
});
Dashboard.hideLoadingMsg();
});
}