summaryrefslogtreecommitdiff
path: root/web/js/bb.js
blob: 8d8590dbd0aec5255d2d679debe3e61a397668bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
	}
}