-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
49 lines (42 loc) · 1.47 KB
/
popup.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
<!doctype html>
<html>
<head>
<title>Getting Started Extension's Popup</title>
<link rel="stylesheet" type="text/css" href="core/popup.css">
<!--
- JavaScript and HTML must be in separate files: see our Content Security
- Policy documentation[1] for details and explanation.
-
- [1]: http://developer.chrome.com/extensions/contentSecurityPolicy.html
-->
<script src="lib/jquery-1.9.1.min.js"></script>
<script src="core/popup.js"></script>
</head>
<body>
<div id="selector">
<a class="box" data-line="red" id="redLine"></a>
<a class="box" data-line="green" id="greenLine"></a>
<a class="box" data-line="orange" id="orangeLine"></a>
<a class="box" data-line="blue" id="blueLine"></a>
<a class="box" data-line="gold" id="goldLine"></a>
<a class="box" data-line="silver" id="silverLine"></a>
<a id="expand">></a>
</div>
<div id="lines">
</div>
<div id="links">
<b>First Column = Next Bus's Arrival Time</b>
<br />
<a id="rocbuses" href="http://rochack.org/rocbuses">
See All Schedules
</a>
<br />
<a id="github" href="https://github.com/RocHack/rocbuses-chrome">
<img id="octocat" src="./lib/Octocat.png" width="45px" height="37px" />
</a>
<a id="rochack" href="http://rochack.org">
<img id="rochack_logo" src="./lib/rochack_logo.png" width="37px" height="37px" />
</a>
</div>
</body>
</html>