-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
39 lines (36 loc) · 1.9 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
<!DOCTYPE html>
<html>
<head>
<title>Falcon Heavy - Go For Launch</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./styles.css">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
</head>
<body>
<h3><span>Falcon Heavy - Go For Launch <span class="open-alert" onclick="openAlert()">i</span></h3>
<div id="map"></div>
<div id="alert">
<div class="content">
<button class="close-alert" onclick="closeAlert()">X</button>
<p>On February 6th, 2018, SpaceX did something pretty cool - put a car carrying a towel into heliocentric orbit.</p>
<p>
On
<a href="https://www.reddit.com/r/spacex/" title="Visit the Subreddit" target="_blank">/r/spacex</a>, <strong>/u/bad_motivator</strong> started a
<a href="https://www.reddit.com/r/spacex/comments/7vg63x/rspacex_falcon_heavy_test_flight_official_launch/dttm08w/" title="See the Thread" target="_blank">
chain of check-ins</a>
that showed just how global the appeal of that event was.
Here are those check-ins, mapped for your convenience.
</p>
<p>Comments last fetched at: <strong><span id="last-updated"></span></strong></p>
<p>Mapped points: <strong><span id="mapped-points"></span></strong></p>
<p><a href="https://github.com/jackkoppa/go-for-launch" title="visit jackkopppa/go-for-launch repo" target="_blank">GitHub Repo</a></p>
</div>
</div>
<div id="alert-background"></div>
<script async defer id="maps-api"></script>
<script src="./manually-retrieved-coordinates.js"></script>
<script src="./maps.js"></script>
<script src="./interaction.js"></script>
</body>
</html>