-
Notifications
You must be signed in to change notification settings - Fork 8
/
old_browser.html
25 lines (23 loc) · 1000 Bytes
/
old_browser.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">
<head>
<title>Browser Compatibility Warning</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.bundle.min.js"></script>
<script src="https://unpkg.com/[email protected]/es5.js"></script>
<link rel="stylesheet" href="lib/darcula.css">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<h1>Browser Compatibility Warning</h1>
The editor requires a recent browser to be able to import/export scripts in
a compressed format. The needed API has been available since Chrome/Edge
103, Firefox 113, Opera 89, and Safari 16.4. Your browser is:
<p><p><span style="color:red">
<script>
const res = bowser.getParser(navigator.userAgent).parsedResult;
document.write(res.browser.name + " " + res.browser.version +
"</span><br>[" + navigator.userAgent + "]");
</script>
</body>
</html>