summaryrefslogtreecommitdiff
path: root/example/src/main/resources/index-dev.html
blob: 364241b544b4fa435d9566eaf86923c0e29d5d9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
  <title>Example Scala.js application</title>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  <script type="text/javascript" src="/workbench.js"></script>
</head>
<body style="margin: 0px">

<div>
    <canvas style="display: block" id="canvas" width="255" height="255"/>
</div>

<script type="text/javascript" src="../example-fastopt.js"></script>

<script>
    ScalaJSExample().main();
</script>
</body>
</html>