-
Notifications
You must be signed in to change notification settings - Fork 52
/
index.html
52 lines (50 loc) · 3.32 KB
/
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
43
44
45
46
47
48
49
50
51
52
<html>
<head>
<meta name="google-signin-scope" content="https://www.googleapis.com/auth/spreadsheets">
<meta name="google-signin-client_id" content="7905716411-cc3fsf287o3hukp3su08jdpqv8g94h8g.apps.googleusercontent.com">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/all.min.css">
<link href="https://gitcdn.github.io/bootstrap-toggle/2.2.2/css/bootstrap-toggle.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/all.min.css"></link>
<link rel="stylesheet" href="./examples/upload_file.css">
<link href="https://fonts.googleapis.com/css?family=Ubuntu+Condensed&display=swap" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.4.1.js" integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/4.6.3/papaparse.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.3/Chart.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/plotly.js/1.33.1/plotly-basic.min.js"></script>
<script src="https://gitcdn.github.io/bootstrap-toggle/2.2.2/js/bootstrap-toggle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/FileSaver.js/1.3.3/FileSaver.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.14.3/xlsx.full.min.js"></script>
<script src="https://apis.google.com/js/platform.js" async defer></script>
</head>
<body>
<div id="first"></div>
<div id="second"></div>
<script src="./dist/PublicLab.Grapher.js"></script>
<footer>
<div class="footer-content">
<h3>Need help?</h3>
<p>Post a link to this and ask for help from other community members on <a href="https://publiclab.org/chat">PublicLab.org</a></p>
<div class="footer-buttondiv">
<button class="btn btn-primary" type="button" aria-expanded="false" onclick="location.href = 'https://publiclab.org/chat'">
Ask a question >>
</button>
</div>
</div>
<div class="footer-content">
<h3>Improve this tool</h3>
<p>This is an open source toolkit which you can help add to and improve on <a href="https://github.com/publiclab/community-toolbox">GitHub</a></p>
<div class="footer-buttondiv">
<button class="btn btn-primary" type="button" aria-expanded="false" onclick="location.href = 'https://github.com/publiclab/simple-data-grapher'">
View the code
</button>
</div>
</div>
</footer>
<script>
a = new SimpleDataGrapher("first");
</script>
</body>
</html>