mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fix issue clicking on latest tv
This commit is contained in:
parent
b1043b093c
commit
331bb267fd
4 changed files with 11 additions and 6 deletions
|
@ -45,10 +45,17 @@
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* jQuery mobile adds a text shadow that seems unnecessary. */
|
||||||
* {
|
* {
|
||||||
text-shadow: none !important;
|
text-shadow: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Remove IE mobile 300ms tap delay */
|
||||||
|
html {
|
||||||
|
-ms-touch-action: manipulation;
|
||||||
|
touch-action: manipulation;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
overflow-y: scroll !important;
|
overflow-y: scroll !important;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
|
|
|
@ -1200,9 +1200,7 @@
|
||||||
cssClass += ' ' + LibraryBrowser.getUserDataCssClass(item.UserData.Key);
|
cssClass += ' ' + LibraryBrowser.getUserDataCssClass(item.UserData.Key);
|
||||||
}
|
}
|
||||||
|
|
||||||
// The click through hasn't been working on chrome android
|
if (options.showChildCountIndicator) {
|
||||||
// The > 1 can be removed once this is resolved
|
|
||||||
if (options.showChildCountIndicator && item.ChildCount > 1) {
|
|
||||||
cssClass += ' groupedCard';
|
cssClass += ' groupedCard';
|
||||||
|
|
||||||
if (item.Type == 'Series') {
|
if (item.Type == 'Series') {
|
||||||
|
|
|
@ -43,10 +43,10 @@
|
||||||
return $(".radioDonationType:checked", page).val();
|
return $(".radioDonationType:checked", page).val();
|
||||||
}
|
}
|
||||||
|
|
||||||
var lifeTimeAmount = 40;
|
var lifeTimeAmount = 30;
|
||||||
var dailyAmount = 1;
|
var dailyAmount = 1;
|
||||||
var monthlyAmount = 4;
|
var monthlyAmount = 4;
|
||||||
var yearlyAmount = 24;
|
var yearlyAmount = 20;
|
||||||
function getDonationAmount(page) {
|
function getDonationAmount(page) {
|
||||||
|
|
||||||
var type = getDonationType(page);
|
var type = getDonationType(page);
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
var options = {
|
var options = {
|
||||||
|
|
||||||
IncludeItemTypes: "Episode",
|
IncludeItemTypes: "Episode",
|
||||||
Limit: screenWidth >= 1600 ? 24 : (screenWidth >= 1440 ? 16 : 15),
|
Limit: 24,
|
||||||
Fields: "PrimaryImageAspectRatio",
|
Fields: "PrimaryImageAspectRatio",
|
||||||
ParentId: parentId,
|
ParentId: parentId,
|
||||||
IsPlayed: false
|
IsPlayed: false
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue