forked from nickcanz/raphael-sparkline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 799 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
<!DOCTYPE html>
<html>
<head>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js' type='text/javascript'></script>
<script src='underscore.js' type='text/javascript'></script>
<script src='raphael.js' type='text/javascript'></script>
<script src='raphael-sparkline.js' type='text/javascript'></script>
<script src='example.js' type='text/javascript'></script>
</head>
<body>
<style type='text/css'>
body {
background-color: #fffff3; }
#example {
width: 100px;
height: 30px; }
</style>
<div id='example'>
<div id='example2'>
<script type='text/javascript'>
//<![CDATA[
Examples.init();
Examples.init2();
//]]>
</script>
</div>
</body>
</html>