forked from MRSallee/CrinGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
graph_free.html
25 lines (25 loc) · 1.06 KB
/
graph_free.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
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<link rel="shortcut icon" type="image/png" href="favicon.png"/>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<div class="graphtool">
<noscript>Turn on Javascript</noscript>
</div>
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="https://d3js.org/d3-selection-multi.v1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fuse.js/3.4.4/fuse.min.js"></script>
<script src="config.js"></script>
<script>
const max_compare = 2;
const disallow_target = true;
const premium_html = "<h2>You gonna pay for that?</h2><p>To use target curves, or more than two graphs, upgrade to Patreon <a target='_blank' href='https://www.patreon.com/join/crinacle/checkout?rid=3775534'>Silver tier</a> and switch to <a target='_blank' href='https://crinacle.com/graphs/graphtool/premium/'>the premium tool</a>.<p>";
</script>
<script src="equalizer.js"></script>
<script src="saveSvgAsPng.js"></script>
<script src="graphtool.js"></script>
</body>
</html>