-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathindex.html
51 lines (45 loc) · 2.23 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
<!DOCTYPE html>
<html>
<head>
<title>Vincent Le</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- Libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.4.0/d3.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/index.js"></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','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-68576141-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<iframe class="github-stars" src="https://ghbtns.com/github-btn.html?user=vinnyoodles&repo=reddit-heatmap&type=star&count=true" frameborder="0" scrolling="0"></iframe>
<h1 class="text-center custom-title">Find your Reddit activity</h1>
<form class="input-group custom-input-group">
<input type="text" class="js-user-field form-control" name="user" placeholder="Enter a Reddit username">
<span class="input-group-btn">
<button class="btn btn-default" type="submit">Go!</button>
</span>
</form>
<label class="center checkbox">
<input class="js-votes" type="checkbox">
<a class="js-vote-link" target="_blank" href="http://stackoverflow.com/questions/34947447/403-forbidden-get-upvoted-comments-from-reddit/34947550" title="Turn on privacy options"> Use upvotes and downvotes</a>
</label>
<div class="results">
<div class="js-heatmap"></div>
<div class="js-months"></div>
<div class="js-legend"></div>
<div class="js-empty hidden center">
<h4>Oops!</h4>
<img src="assets/404.gif" style="width:400px;height:300px"></img>
</div>
<div class="js-spinner loader hidden"></div>
</div>
</body>
</html>