summaryrefslogtreecommitdiff
path: root/kvmd/web/js/main.js
blob: a0008d538516df67d4bed8eb5dedc076286d42e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 hid = new Hid();
		var ui = new Ui(hid);
		new Session(new Atx(), hid, new Msd());
		new Stream(ui);
	}
}