mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
added HasSyncJob
This commit is contained in:
parent
218e086d94
commit
543d70fdf6
6 changed files with 30 additions and 18 deletions
|
@ -313,7 +313,8 @@
|
|||
shape: "square",
|
||||
lazy: true,
|
||||
overlayText: false,
|
||||
showTitle: true
|
||||
showTitle: true,
|
||||
centerText: true
|
||||
});
|
||||
$('.itemsContainer', elem).html(html).lazyChildren();
|
||||
}
|
||||
|
@ -410,10 +411,12 @@
|
|||
|
||||
});
|
||||
|
||||
$('.btnCloseSearch').on('click', function () {
|
||||
$('.headerSearchInput').val('');
|
||||
onHeaderSearchChange('');
|
||||
});
|
||||
$('.btnCloseSearch').on('click', closeSearchOverlay);
|
||||
}
|
||||
|
||||
function closeSearchOverlay() {
|
||||
$('.headerSearchInput').val('');
|
||||
onHeaderSearchChange('');
|
||||
}
|
||||
|
||||
$(document).on('pagehide', ".libraryPage", function () {
|
||||
|
@ -421,11 +424,7 @@
|
|||
$('#txtSearch', this).val('');
|
||||
$('#searchHints', this).empty();
|
||||
|
||||
}).on('pagecontainerbeforehide', function () {
|
||||
|
||||
$('.headerSearchInput').val('');
|
||||
getSearchOverlay(false).hide();
|
||||
});
|
||||
}).on('pagecontainerbeforehide', closeSearchOverlay);
|
||||
|
||||
$(document).on('headercreated', function () {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue