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

catch date parsing errors

This commit is contained in:
Luke Pulverenti 2013-04-19 01:08:18 -04:00
parent f9fb418c1d
commit 414feaf3a2
34 changed files with 223 additions and 173 deletions

View file

@ -23,9 +23,7 @@
var showPaging = result.TotalRecordCount > query.Limit;
if (showPaging) {
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true);
}
$('.listTopPaging', page).html(showPaging ? LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true) : '').trigger('create');
html += LibraryBrowser.getPosterDetailViewHtml({
items: result.Items,
@ -38,17 +36,17 @@
var elem = $('#items', page).html(html).trigger('create');
$('select', elem).on('change', function () {
$('.selectPage', page).on('change', function () {
query.StartIndex = (parseInt(this.value) - 1) * query.Limit;
reloadItems(page);
});
$('.btnNextPage', elem).on('click', function () {
$('.btnNextPage', page).on('click', function () {
query.StartIndex += query.Limit;
reloadItems(page);
});
$('.btnPreviousPage', elem).on('click', function () {
$('.btnPreviousPage', page).on('click', function () {
query.StartIndex -= query.Limit;
reloadItems(page);
});