mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2025-12-12 09:10:30 +08:00
15 lines
368 B
JavaScript
15 lines
368 B
JavaScript
function main() {
|
|
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";
|
|
} else {
|
|
var ui = new Ui();
|
|
new Session(new Atx(), new Hid(), new Msd());
|
|
new Stream(ui);
|
|
}
|
|
}
|