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

update components

This commit is contained in:
Luke Pulverenti 2016-04-30 00:02:36 -04:00
parent 78e572f2fc
commit 038bf83aef
20 changed files with 160 additions and 25 deletions

View file

@ -16,12 +16,12 @@
},
"devDependencies": {},
"ignore": [],
"version": "1.2.57",
"_release": "1.2.57",
"version": "1.2.58",
"_release": "1.2.58",
"_resolution": {
"type": "version",
"tag": "1.2.57",
"commit": "f0449d2fac7a883179fdeefdac1807a41c47dfd5"
"tag": "1.2.58",
"commit": "523cb074208c7350bb68554c6fcde613142117f4"
},
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
"_target": "^1.2.0",

View file

@ -77,11 +77,18 @@ define(['browser'], function (browser) {
// Unfortunately there's no real way to detect mkv support
if (browser.chrome) {
var userAgent = navigator.userAgent.toLowerCase();
// Not supported on opera tv
if (browser.operaTv) {
return false;
}
// Filter out browsers based on chromium that don't support mkv
if (userAgent.indexOf('vivaldi') != -1 || userAgent.indexOf('opera') != -1) {
return false;
}
return true;
}