-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfdg.html
More file actions
58 lines (53 loc) · 2.4 KB
/
fdg.html
File metadata and controls
58 lines (53 loc) · 2.4 KB
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
53
54
55
56
57
58
<!DOCTYPE html>
<!-- saved from url=(0040)http://bl.ocks.org/mbostock/raw/4062045/ -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta charset="utf-8">
<link href="/style.css" rel="stylesheet" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>6 Degrees of Venmo | Graph</title>
<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-5529491-3', 'auto');
ga('send', 'pageview');
</script>
<script>
var require = {
baseUrl: "/scripts",
paths: {
underscore: '/scripts/lib/underscore',
jquery: '/scripts/lib/jquery',
backbone: '/scripts/lib/backbone',
d3: '/scripts/lib/d3',
text: "/scripts/lib/text",
},
shim: {
"underscore": {
exports: "_"
},
'backbone': {
deps: ['underscore', 'jquery'],
exports: 'Backbone'
}
}
};
</script>
<script data-main="/scripts/mains/graph.js" src="/scripts/lib/require.js"></script>
<style type="text/css"></style></head>
<body>
<div class="vbox">
<div class="fbox" id="edge-list">
<div class="control" ><input class="expand-all-button" type="button" value="Expand"></div>
<div>Degree: <span id="degree-span">0</span></div>
<div>People: <span id="node-count-span">1</span></div>
<div><span><a href="/">Start Over</a></span></div>
</div>
<div id="container"></div>
<div class="fbox footer"><div><span class="explain">Scroll to zoom, drag to pan</span></div>
<div><span><a href="/faq">FAQ</a></span></div>
<div><span><a href="https://github.com/pcarleton/venweb">GitHub</a></span></div>
<div><a href="https://twitter.com/share" class="twitter-share-button" data-url="http://venweb.herokuapp.com" data-text="6 Degrees of Venmo" data-count="none">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script></div>
</div></div>
</body></html>