-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 954 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>scalajs-react components demo</title>
<style>
html {
font-family: sans-serif;
/* 1 */
-ms-text-size-adjust: 100%;
/* 2 */
-webkit-text-size-adjust: 100%;
/* 2 */
}
body {
margin: 0;
font-size: 13px;
line-height: 20px;
}
a {
color: red;
background: transparent;
text-decoration: none;
}
</style>
</head>
<body>
<div id="container"></div>
<script type="text/javascript">
</script>
<!--all js dependencies-->
<!-- Include Scala.js compiled code -->
<script type="text/javascript" src="target/scala-2.11/treelog-scalajs-jsdeps.js"></script>
<script type="text/javascript" src="target/scala-2.11/treelog-scalajs-fastopt.js"></script>
<!-- Run JSApp -->
<script>com.oranda.treelogui.TreeLogUIExamples().main()</script>
</body>
</html>