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
|
@ -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' :
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue