mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update components
This commit is contained in:
parent
353d62846e
commit
31b6fde452
5 changed files with 20 additions and 17 deletions
|
@ -14,12 +14,12 @@
|
|||
},
|
||||
"devDependencies": {},
|
||||
"ignore": [],
|
||||
"version": "1.4.453",
|
||||
"_release": "1.4.453",
|
||||
"version": "1.4.455",
|
||||
"_release": "1.4.455",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "1.4.453",
|
||||
"commit": "26b21ef107f8d0042c200bb825b85492beeafe80"
|
||||
"tag": "1.4.455",
|
||||
"commit": "5ec7d75e2bd29deb97e1027984094d7cdcf4e336"
|
||||
},
|
||||
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
||||
"_target": "^1.2.1",
|
||||
|
|
|
@ -557,6 +557,16 @@ define(['browser'], function (browser) {
|
|||
}
|
||||
|
||||
var isTizenFhd = false;
|
||||
if (browser.tizen) {
|
||||
try {
|
||||
var isTizenUhd = webapis.productinfo.isUdPanelSupported();
|
||||
isTizenFhd = !isTizenUhd;
|
||||
console.log("isTizenFhd = " + isTizenFhd);
|
||||
} catch (error) {
|
||||
console.log("isUdPanelSupported() error code = " + error.code);
|
||||
}
|
||||
}
|
||||
|
||||
var globalMaxVideoBitrate = browser.ps4 ? '8000000' :
|
||||
(browser.xboxOne ? '10000000' :
|
||||
(browser.edgeUwp ? '40000000' :
|
||||
|
|
|
@ -621,8 +621,6 @@ define(['browser', 'pluginManager', 'events', 'apphost', 'loading', 'playbackMan
|
|||
|
||||
if (enableCustomControls) {
|
||||
this.removeAttribute('controls');
|
||||
} else {
|
||||
this.setAttribute('controls', 'controls');
|
||||
}
|
||||
|
||||
seekOnPlaybackStart(e.target);
|
||||
|
@ -770,15 +768,9 @@ define(['browser', 'pluginManager', 'events', 'apphost', 'loading', 'playbackMan
|
|||
|
||||
function enableCustomVideoControls() {
|
||||
|
||||
//if (AppInfo.isNativeApp && browser.safari) {
|
||||
|
||||
// if (browser.ipad) {
|
||||
// // Need to disable it in order to support picture in picture
|
||||
// return false;
|
||||
// }
|
||||
|
||||
// return true;
|
||||
//}
|
||||
if (browser.ipad) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -89,7 +89,9 @@ define(['pluginManager', 'events', 'browser', 'embyRouter'], function (pluginMan
|
|||
enablejsapi: 1,
|
||||
modestbranding: 1,
|
||||
rel: 0,
|
||||
showinfo: 0
|
||||
showinfo: 0,
|
||||
fs: 0,
|
||||
playsinline: 1
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
pageData = data[key] = {
|
||||
query: {
|
||||
StartIndex: 0,
|
||||
EnableFavoriteSorting: true,
|
||||
Limit: LibraryBrowser.getDefaultPageSize(),
|
||||
Fields: "PrimaryImageAspectRatio"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue