-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
45 lines (34 loc) · 1.48 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/popup.css"/>
<script src="js/util.js"></script>
</head>
<body>
<p style="white-space: nowrap;">Pull Request Helper</p>
<hr class="solid"/>
<button id="expandButton" class="button">Expand All</button>
<hr class="dotted"/>
<div class="button-group">
<button id="hideResolvedButton" class="button">Hide Resolved</button>
<button id="showResolvedButton" class="button">Show Resolved</button>
</div>
<hr class="dotted"/>
<div class="button-group">
<button id="hideCommitsButton" class="button">Hide Commits</button>
<button id="showCommitsButton" class="button">Show Commits</button>
</div>
<hr class="dotted"/>
<div class="button-group">
<button id="hideStatusesButton" class="button">Hide Statuses</button>
<button id="showStatusesButton" class="button">Show Statuses</button>
</div>
<hr class="dotted"/>
<div class="button-group">
<button id="hideCommentsButton" class="button">Hide Comments</button>
<button id="showCommentsButton" class="button">Show Comments</button>
</div>
<button id="refreshButton"><img src="images/refresh.svg"></img></button>
<script src="js/popup.js"></script>
</body>
</html>