1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge remote-tracking branch 'upstream/master' into bugfix/web0s-fullscreen

This commit is contained in:
Kay Simons 2021-09-04 13:18:54 +02:00
commit f925138695
98 changed files with 5870 additions and 3582 deletions

View file

@ -313,8 +313,8 @@ import { appRouter } from '../../../components/appRouter';
function onPointerMove(e) {
if ((e.pointerType || (layoutManager.mobile ? 'touch' : 'mouse')) === 'mouse') {
const eventX = e.screenX || 0;
const eventY = e.screenY || 0;
const eventX = e.screenX || e.clientX || 0;
const eventY = e.screenY || e.clientY || 0;
const obj = lastPointerMoveData;
if (!obj) {
@ -911,7 +911,8 @@ import { appRouter } from '../../../components/appRouter';
actionsheet.show({
items: menuItems,
title: globalize.translate('Audio'),
positionTo: positionTo
positionTo: positionTo,
enableHistory: false
}).then(function (id) {
const index = parseInt(id);
@ -957,7 +958,8 @@ import { appRouter } from '../../../components/appRouter';
actionsheet.show({
title: globalize.translate('Subtitles'),
items: menuItems,
positionTo: positionTo
positionTo: positionTo,
enableHistory: false
}).then(function (id) {
const index = parseInt(id);