mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
Merge pull request #1316 from MediaBrowser/master
update mobile chrome playback
This commit is contained in:
commit
c948a0a345
@ -570,7 +570,7 @@
|
|||||||
closeMainDrawer();
|
closeMainDrawer();
|
||||||
|
|
||||||
// On mobile devices don't navigate until after the closing animation has completed or it may stutter
|
// On mobile devices don't navigate until after the closing animation has completed or it may stutter
|
||||||
var delay = browserInfo.mobile ? 350 : 150;
|
var delay = browserInfo.mobile ? 350 : 200;
|
||||||
|
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
if (action) {
|
if (action) {
|
||||||
@ -595,7 +595,7 @@
|
|||||||
closeMainDrawer();
|
closeMainDrawer();
|
||||||
|
|
||||||
// On mobile devices don't navigate until after the closing animation has completed or it may stutter
|
// On mobile devices don't navigate until after the closing animation has completed or it may stutter
|
||||||
var delay = browserInfo.mobile ? 350 : 150;
|
var delay = browserInfo.mobile ? 350 : 200;
|
||||||
|
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
Dashboard.logout();
|
Dashboard.logout();
|
||||||
|
@ -202,7 +202,8 @@
|
|||||||
|
|
||||||
profile.TranscodingProfiles = [];
|
profile.TranscodingProfiles = [];
|
||||||
|
|
||||||
if (canPlayMkv && !isVlc) {
|
// Can't use mkv on mobile because we have to use the native player controls and they won't be able to seek it
|
||||||
|
if (canPlayMkv && !isVlc && !browserInfo.mobile) {
|
||||||
profile.TranscodingProfiles.push({
|
profile.TranscodingProfiles.push({
|
||||||
Container: 'mkv',
|
Container: 'mkv',
|
||||||
Type: 'Video',
|
Type: 'Video',
|
||||||
|
8
dashboard-ui/thirdparty/hls.min.js
vendored
8
dashboard-ui/thirdparty/hls.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user