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

update guide style

This commit is contained in:
Luke Pulverenti 2015-04-14 11:26:02 -04:00
parent d396001ad0
commit a472453e4b
3 changed files with 24 additions and 3 deletions

View file

@ -87,6 +87,12 @@
channelQuery.StartIndex -= channelQuery.Limit;
reloadChannels(page);
});
$('.selectPageSize', page).on('change', function () {
channelQuery.Limit = parseInt(this.value);
channelQuery.StartIndex = 0;
reloadChannels(page);
});
});
}
@ -413,7 +419,7 @@
});
}
}).on('pagebeforeshow', "#liveTvGuidePage", function () {
}).on('pageshow', "#liveTvGuidePage", function () {
var page = this;