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

disable backdrops by default for IE

This commit is contained in:
Luke Pulverenti 2015-05-11 22:32:53 -04:00
parent d861c9e1bf
commit 589ad2de70

View file

@ -109,6 +109,12 @@
return false;
}
// It flickers too much in IE
if ($.browser.msie) {
return false;
}
if (!$.browser.mobile) {
return true;
}