mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
commit
d1d1cd2618
@ -72,6 +72,9 @@
|
||||
|
||||
<script type="text/javascript">
|
||||
$('.collectionItemSearchForm').off('submit', EditCollectionItemsPage.onSearchFormSubmit).on('submit', EditCollectionItemsPage.onSearchFormSubmit);
|
||||
$("body").on("popupafteropen", ".popupIdentify", function (e) {
|
||||
$("#txtLookupName").focus().select();
|
||||
});
|
||||
</script>
|
||||
</div>
|
||||
</body>
|
||||
|
@ -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 = '';
|
||||
|
@ -59,7 +59,7 @@
|
||||
}
|
||||
$('#videoPlayer').removeClass('fullscreenVideo');
|
||||
} else {
|
||||
requestFullScreen(document.documentElement);
|
||||
requestFullScreen(document.body);
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user