mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
3.0.5675.0
This commit is contained in:
parent
5f308d38a0
commit
844f27d953
5 changed files with 14 additions and 11 deletions
|
@ -458,7 +458,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div data-role="content">
|
<div data-role="content">
|
||||||
</div>
|
</div>
|
||||||
<div data-role="popup" class="popupIdentify popup" data-theme="a">
|
<div data-role="popup" class="popupIdentify popupIdentifyItem popup" data-theme="a">
|
||||||
|
|
||||||
<div class="ui-bar-a" style="text-align: center; padding: 0 20px; position: relative;">
|
<div class="ui-bar-a" style="text-align: center; padding: 0 20px; position: relative;">
|
||||||
|
|
||||||
|
@ -617,7 +617,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div data-role="popup" class="popupIdentifyCollection popup" data-theme="a">
|
<div data-role="popup" class="popupIdentifyCollection popup popupIdentify" data-theme="a">
|
||||||
|
|
||||||
<div class="ui-bar-a" style="text-align: center; padding: 0 20px;">
|
<div class="ui-bar-a" style="text-align: center; padding: 0 20px;">
|
||||||
<h3>
|
<h3>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<title></title>
|
<title></title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="itemDetailPage" data-role="page" class="page libraryPage itemDetailPage lightBackdropPage" data-theme="b" data-require="scripts/itemdetailpage,paperbuttonstyle,tileitemcss">
|
<div id="itemDetailPage" data-role="page" class="page libraryPage itemDetailPage lightBackdropPage" data-theme="b" data-require="scripts/itemdetailpage,paperbuttonstyle,tileitemcss,jqmicons">
|
||||||
|
|
||||||
<div class="itemTabs homeTabs" style="display: none;">
|
<div class="itemTabs homeTabs" style="display: none;">
|
||||||
<div class="libraryViewNav scopedLibraryViewNav">
|
<div class="libraryViewNav scopedLibraryViewNav">
|
||||||
|
|
|
@ -223,7 +223,7 @@
|
||||||
function onSearchFormSubmit() {
|
function onSearchFormSubmit() {
|
||||||
var page = $(this).parents('.page');
|
var page = $(this).parents('.page');
|
||||||
|
|
||||||
showSearchResults(page, $('#txtLookupName', page).val());
|
showSearchResults(page, $('#txtLookupName', this).val());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1086,7 +1086,7 @@
|
||||||
$('.identifyOptionsForm', page).hide();
|
$('.identifyOptionsForm', page).hide();
|
||||||
$('.btnIdentifyBack', page).hide();
|
$('.btnIdentifyBack', page).hide();
|
||||||
|
|
||||||
$('.popupIdentify', page).popup('open');
|
$('.popupIdentifyItem', page).popup('open');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1280,7 +1280,7 @@
|
||||||
|
|
||||||
Dashboard.hideLoadingMsg();
|
Dashboard.hideLoadingMsg();
|
||||||
|
|
||||||
$('.popupIdentify', page).popup('close');
|
$('.popupIdentifyItem', page).popup('close');
|
||||||
|
|
||||||
reload(page);
|
reload(page);
|
||||||
});
|
});
|
||||||
|
|
|
@ -418,7 +418,10 @@
|
||||||
|
|
||||||
query.StartIndex = index;
|
query.StartIndex = index;
|
||||||
query.Limit = limit;
|
query.Limit = limit;
|
||||||
query.Fields = fields;
|
|
||||||
|
if (fields) {
|
||||||
|
query.Fields += "," + fields;
|
||||||
|
}
|
||||||
|
|
||||||
return ApiClient.getItems(Dashboard.getCurrentUserId(), query);
|
return ApiClient.getItems(Dashboard.getCurrentUserId(), query);
|
||||||
|
|
||||||
|
@ -460,12 +463,12 @@
|
||||||
|
|
||||||
if (query.IncludeItemTypes == "Audio") {
|
if (query.IncludeItemTypes == "Audio") {
|
||||||
|
|
||||||
html = LibraryBrowser.getListViewHtml({
|
html = "<div style='max-width:1000px;margin:auto;'>" + LibraryBrowser.getListViewHtml({
|
||||||
items: result.Items,
|
items: result.Items,
|
||||||
playFromHere: true,
|
playFromHere: true,
|
||||||
defaultAction: 'playallfromhere',
|
defaultAction: 'playallfromhere',
|
||||||
smallIcon: true
|
smallIcon: true
|
||||||
});
|
}) + "</div>";
|
||||||
}
|
}
|
||||||
else if (query.IncludeItemTypes == "Movie" || query.IncludeItemTypes == "Trailer") {
|
else if (query.IncludeItemTypes == "Movie" || query.IncludeItemTypes == "Trailer") {
|
||||||
|
|
||||||
|
@ -513,10 +516,10 @@
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
||||||
html = LibraryBrowser.getListViewHtml({
|
html = "<div style='max-width:1000px;margin:auto;'>" + LibraryBrowser.getListViewHtml({
|
||||||
items: result.Items,
|
items: result.Items,
|
||||||
smallIcon: true
|
smallIcon: true
|
||||||
});
|
}) + "</div>";
|
||||||
}
|
}
|
||||||
|
|
||||||
html += LibraryBrowser.getQueryPagingHtml({
|
html += LibraryBrowser.getQueryPagingHtml({
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue