-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (76 loc) · 3.14 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
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
<!DOCTYPE html>
<html>
<head>
<title>IEEE Hackathon Facebook Awesomesauce</title>
<link href="css/earth.css" rel="stylesheet">
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div id="container" class="hide">
<div id="earth" class="earth-trans">
</div>
<div id="fb-button" class="hide">
<div class="fb-login-button" size="medium" scope="user_photos,friends_photos,user_hometown,friends_hometown,user_location,friends_location,user_checkins,friends_checkins"></div>
</div>
<div id="right-sidebar">
<div class="button-cover">
<img id="add-player-button" src="img/icons/plus.png">
</div>
<div class="button-cover">
<img id="fullscreen-button" src="img/icons/zoom.png">
</div>
<div class="button-cover">
<img id="spin-left-button" src="img/icons/back.png">
</div>
<div class="button-cover">
<img id="spin-right-button" src="img/icons/forward.png">
</div>
<div class="button-cover">
<img id="logout-button" src="img/icons/garbage.png">
</div>
</div>
<div id="marker-popover">
<h3 class="popover-title">Title</h3>
<div class="popover-content">
Content goes here.
</div>
</div>
<div id="slideshow">
<img id="slideshow-img" src="img/spacer.gif">
</div>
<div id="loading">
<img src="/img/spinningcorgi.gif">
</div>
</div>
</div>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '431785433525750', // App ID
channelUrl : '//my.eatcumtd.com/channel.php', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
// Additional initialization code here
};
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
</script>
<script src="http://webglearth.com/api.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<script src="js/locations.js"></script>
<script src="js/earth.js"></script>
<script src="js/fb-fetcher.js"></script>
<script src="js/kdtree.js"></script>
<script src="js/point.js"></script>
</body>
</html>