-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.html
63 lines (61 loc) · 1.85 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<title>Open JIRA Ticket Toolbar</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="css/popup.css" />
<script type="module" src="js/popup.js"></script>
</head>
<body>
<form id="ticket-form">
<div class="input-container">
<input
type="text"
id="ticket"
placeholder="Enter Ticket ID"
autofocus
required
tabindex="0"
autocomplete="off"
/>
<button type="button" class="glow-on-hover" id="toggleProject">Toggle Project</button>
</div>
</form>
<span id="status" hidden></span>
<div id="clock-container" hidden>
<div class="clock" data-timezone="America/Los_Angeles">
🇺🇸 Los Angeles - <span></span>
</div>
<div class="clock" data-timezone="America/New_York">
🇺🇸 New York - <span></span>
</div>
<div class="clock" data-timezone="America/Danmarkshavn">
🇬🇱 UTC - <span></span>
</div>
<div class="clock" data-timezone="Asia/Calcutta">
🇮🇳 India - <span></span>
</div>
<div class="clock" data-timezone="Asia/Singapore">
🇸🇬 Singapore - <span></span>
</div>
<div class="clock" data-timezone="Australia/Sydney">
🇦🇺 Sidney - <span></span>
</div>
</div>
<table id="quarter-container" hidden>
<th class="q1">Q1</th>
<th class="q2">Q2</th>
<th class="q3">Q3</th>
<th class="q4">Q4</th>
<tr>
<td class="q1">JAN-MAR</td>
<td class="q2">APR-JUN</td>
<td class="q3">JUL-SEP</td>
<td class="q4">OCT-DEC</td>
</tr>
</table>
<div id="previousSearches" style="padding: 0">
<ul id="historyList"></ul>
</div>
</body>
</html>