forked from GuillaumeDerval/L-TProject2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
splot.html
36 lines (26 loc) · 762 Bytes
/
splot.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
<!DOCTYPE html>
<html>
<head>
<title>Example Scala.js d3 facade application</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<style>
body {
font: 10px sans-serif;
}
.group-tick line {
stroke: #000;
}
.ribbons {
fill-opacity: 0.67;
}
</style>
</head>
<body>
<h1>Example Scala.js d3 facade application - development version</h1>
<p>After having compiled and packaged properly the code for the application
(using `sbt fastOptJS::webpack`), you should see some bars here below.
See README.md for detailed explanations.</p>
<div id="splot"></div>
<script type="text/javascript" src="./target/scala-2.12/scalajs-bundler/main/splot-fastopt-bundle.js"></script>
</body>
</html>