-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
44 lines (40 loc) · 2.34 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>The Button Snitch</title>
<link id="favicon" rel="shortcut icon" type="image/png" href="favicon/favicon.ico" />
<meta name="description" content="Monitor Reddit's /r/thebutton with visualizations and notifications">
<meta property="og:title" content="The Button Snitch" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://treyp.github.io/thebutton/" />
<meta property="og:image" content="http://treyp.github.io/thebutton/screenshot.png" />
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="button-snitch"></div>
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js" charset="utf-8"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.9.0/moment.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/react/0.13.1/react-with-addons.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/react/0.13.1/JSXTransformer.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jstimezonedetect/1.0.4/jstz.min.js"></script>
<script src="react-components/timer-display.js" type="text/jsx"></script>
<script src="react-components/tick.js" type="text/jsx"></script>
<script src="react-components/stats-display.js" type="text/jsx"></script>
<script src="react-components/rainbow-distribution.js" type="text/jsx"></script>
<script src="react-components/chart-selector.js" type="text/jsx"></script>
<script src="react-components/log-chart.js" type="text/jsx"></script>
<script src="react-components/time-chart.js" type="text/jsx"></script>
<script src="react-components/histogram-chart.js" type="text/jsx"></script>
<script src="react-components/settings.js" type="text/jsx"></script>
<script src="react-components/button-snitch.js" type="text/jsx"></script>
<script>
(function (i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function (){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-254215-9', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>