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

added paging buttons

This commit is contained in:
Luke Pulverenti 2013-04-15 18:03:05 -04:00
parent 549b78e51d
commit 58e5eea325
15 changed files with 198 additions and 50 deletions

View file

@ -43,6 +43,16 @@
reloadItems(page);
});
$('.btnNextPage', elem).on('click', function () {
query.StartIndex += query.Limit;
reloadItems(page);
});
$('.btnPreviousPage', elem).on('click', function () {
query.StartIndex -= query.Limit;
reloadItems(page);
});
Dashboard.hideLoadingMsg();
});
}