-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
45 lines (38 loc) · 1.44 KB
/
index.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title>FaustPlayGround</title>
<link rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" href="css/Reset.css" />
<link rel="stylesheet" href="css/Main.css" />
<link rel="stylesheet" href="css/FaustInterface.css" />
<link rel="stylesheet" href="css/Library.css" />
<link rel="stylesheet" href="css/Modules.css" />
<link rel="stylesheet" href="css/Scenes.css" />
<link rel="stylesheet" href="css/Playground.css" />
<link rel="stylesheet" href="css/Menu.css" />
<link rel="stylesheet" href="css/AccelerometerEdit.css" />
<link rel="stylesheet" href="css/perfect-scrollbar.min.css" />
<script>
if (window != window.top)
document.write("<style>header {display:none}</style>")
</script>
</head>
<body>
<div id="loadingPage">
<div id="loadingTextBig">Loading</div>
</div>
</body>
<script src="https://apis.google.com/js/client.js?onload=checkAuth"></script>
<script type="module">
import "./src/Lib/AudioContextMonkeyPatch.js"
import { init } from "./src/Main.ts";
var isWasm = (typeof (WebAssembly) !== "undefined");
if (!isWasm) {
alert("WebAssembly is not supported in this browser, the page will not work !")
}
init();
</script>
</html>