-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (38 loc) · 1.11 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
<html>
<head>
<title>Compare Your Friends on Facebook</title>
<link rel="stylesheet" href="styles/wpogfc.css" />
</head>
<body>
<p id="login"><fb:login-button
perms="user_likes,friends_likes"
autologoutlink="true"></fb:login-button></p>
<h1>Compare Your Friends on Facebook</h1>
<div id="status">Loading...</div>
<div class="generated" id="likes">
<h4 id="likesHeader">Shared Likes</h4>
<ul id="selectedFriendLikesContainer"></ul>
</div>
<div class="generated" id="friends">
<h4 id="friendsHeader">Shared Friends</h4>
<ul id="selectedFriendFriendsContainer"></ul>
</div>
<div id="myfriends">
<h2>Friends</h2>
<ul id="friendsContainer"></ul>
</div>
<div id="fb-root"></div>
<script type="text/javascript"
src="lib/jquery-1.4.4.js">
</script>
<script type="text/javascript"
src="http://connect.facebook.net/en_US/all.js">
</script>
<script type="text/javascript"
src="lib/config.js">
</script>
<script type="text/javascript"
src="lib/wpogfc.js">
</script>
</body>
</html>