mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2025-12-12 01:00:29 +08:00
14 lines
321 B
JavaScript
14 lines
321 B
JavaScript
function check_browser() {
|
|
if (
|
|
!window.navigator
|
|
|| window.navigator.userAgent.indexOf("MSIE ") > 0
|
|
|| window.navigator.userAgent.indexOf("Trident/") > 0
|
|
|| window.navigator.userAgent.indexOf("Edge/") > 0
|
|
) {
|
|
$("bad-browser-modal").style.visibility = "visible";
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
}
|