forked from disovi/vk-friends-peacock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
peacock.html
83 lines (72 loc) · 3.63 KB
/
peacock.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Friends Peacock</title>
<script type="text/javascript" src="http://userapi.com/js/api/openapi.js?34"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.min.js"></script>
<script type="text/javascript" language="javascript" src="js/jquery.dataTables.js"></script>
<script src="http://underscorejs.org/underscore-min.js"></script>
<script type="text/javascript" src="http://d3js.org/d3.v2.min.js"></script>
<script type="text/javascript" src="http://www.jnathanson.com/blog/client/jquery/heatcolor/jquery.heatcolor.0.0.1.pack.js"></script>
<script type="text/javascript" src="http://www.datatables.net/release-datatables/extras/FixedColumns/media/js/FixedColumns.js"></script>
<script type="text/javascript" src="http://www.datatables.net/release-datatables/extras/FixedHeader/js/FixedHeader.js"></script>
<script type="text/javascript" language="javascript" src="js/ui.js"></script>
<script type="text/javascript" language="javascript" src="js/progressbar.js"></script>
<script type="text/javascript" language="javascript" src="js/peacock2.js"></script>
<script type="text/javascript" language="javascript" src="js/peacock.js"></script>
<script type="text/javascript" language="javascript" src="js/plot.js"></script>
<script type="text/javascript" language="javascript" src="js/table.js"></script>
<LINK REL=StyleSheet HREF="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/themes/redmond/jquery-ui.css" TYPE="text/css" MEDIA=screen>
<style type="text/css" title="currentStyle">
@import "css/ui.css";
@import "css/table.css";
</style>
<style type="text/css">
path.link {
fill: none;
stroke: #9ecae1;
stroke-width: 1.5px;
}
.nodetext { pointer-events: none; font: 10px sans-serif; }
</style>
</head>
<body>
<div id="progressDialog" title="Сбор данных..."><div id="progressBar"></div></div>
<div id="login_button" onclick="VK.Auth.login(authInfo, 2)"></div>
<script type="text/javascript">
VK.init({apiId: 2433492});
VK.UI.button('login_button');
</script>
<div id ="search_by_id" style="display: none">
ID: <input id="vk_id" type="text">
<input value="Построить" type="button" onclick="peacock(document.getElementById('vk_id').value, 1);">
</div>
<div id ="graph_stage" style="display: none">
<div class="main">
<div class="graph">
</div>
<div class="sc_menu_wrapper">
<div class="sc_menu">
</div>
</div>
</div>
</div>
<div id="table_stage" style="display: none">
<table cellpadding="0" cellspacing="0" border="0" class="display" id="friends_table">
<thead>
<tr>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div id="vk_like" style="margin-left: 50%;"></div>
<script type="text/javascript">
VK.Widgets.Like("vk_like", {type: "mini"});
</script>
</body>
</html>