forked from cyberthinkers/babylonjs-facade
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
23 lines (18 loc) · 779 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Example Scala.js application</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
<body>
<h1>Example Scala.js application - full-optimized version</h1>
<p>After having compiled and full-optimized properly the code for the application
(using `sbt fullOptJS`), you should see "It works" herebelow.
See README.md for detailed explanations.</p>
<canvas id="renderCanvas"></canvas>
<script type="text/javascript" src="./dist/babylon.2.2.max.js"></script>
<script type="text/javascript" src="./target/scala-2.11/babylonjs-facade-opt.js"></script>
<script type="text/javascript" src="./target/scala-2.11/babylonjs-facade-jsdeps.js"></script>
<script>example.ScalaJSExample().main();</script>
</body>
</html>