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

Merge pull request #752 from timhobbs/master

Minor updates
This commit is contained in:
Luke 2014-03-25 07:47:17 -04:00
commit d1d1cd2618
3 changed files with 5 additions and 2 deletions

View file

@ -1141,7 +1141,7 @@
getPagingHtml: function (query, totalRecordCount, updatePageSizeSetting, pageSizes, showLimit) {
if (query.Limit && updatePageSizeSetting !== false) {
localStorage.setItem('pagesize', query.Limit);
localStorage.setItem('pagesize_', query.Limit);
}
var html = '';

View file

@ -59,7 +59,7 @@
}
$('#videoPlayer').removeClass('fullscreenVideo');
} else {
requestFullScreen(document.documentElement);
requestFullScreen(document.body);
}
};