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

made tv links clickable

This commit is contained in:
Luke Pulverenti 2013-10-17 14:24:27 -04:00
parent afe5161947
commit 55ff795d36
26 changed files with 114 additions and 13 deletions

View file

@ -38,6 +38,10 @@
$('#items', page).html(html).trigger('create');
$('.btnChangeToDefaultSort', page).on('click', function () {
$('.defaultSort', page)[0].click();
});
$('.selectPage', page).on('change', function () {
query.StartIndex = (parseInt(this.value) - 1) * query.Limit;
reloadItems(page);