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

@ -72,6 +72,9 @@
<script type="text/javascript"> <script type="text/javascript">
$('.collectionItemSearchForm').off('submit', EditCollectionItemsPage.onSearchFormSubmit).on('submit', EditCollectionItemsPage.onSearchFormSubmit); $('.collectionItemSearchForm').off('submit', EditCollectionItemsPage.onSearchFormSubmit).on('submit', EditCollectionItemsPage.onSearchFormSubmit);
$("body").on("popupafteropen", ".popupIdentify", function (e) {
$("#txtLookupName").focus().select();
});
</script> </script>
</div> </div>
</body> </body>

View file

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

View file

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