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

update tabs

This commit is contained in:
Luke Pulverenti 2016-06-04 13:14:03 -04:00
parent 71c9ecf157
commit 467ff3657f
16 changed files with 82 additions and 76 deletions

View file

@ -140,7 +140,11 @@
});
}
$('.paging', tabContent).html(pagingHtml);
var i, length;
var pagingElems = tabContent.querySelectorAll('.paging');
for (i = 0, length = pagingElems.length; i < length; i++) {
pagingElems[i].innerHTML = pagingHtml;
}
$('.btnNextPage', tabContent).on('click', function () {
query.StartIndex += query.Limit;