mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 10:58:20 -07:00
fixed ie<10 detection
This commit is contained in:
parent
810b02170e
commit
d89a903d8e
@ -1082,7 +1082,7 @@ $(function () {
|
||||
|
||||
$(document.body).append(footerHtml);
|
||||
|
||||
if ($.browser.msie && parseInt($.browser.version) > 10) {
|
||||
if ($.browser.msie && parseInt($.browser.version) < 10) {
|
||||
Dashboard.confirm("This is an unsupported version of Internet Explorer. Please consider upgrading to IE10.", "Unsupported Browser", function (result) {
|
||||
|
||||
if (result) {
|
||||
|
Loading…
Reference in New Issue
Block a user