-
Notifications
You must be signed in to change notification settings - Fork 37
/
popup.html
25 lines (25 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<title>Pretty Pull Requests</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
<link rel="stylesheet" type="text/css" href="popup.css">
<link rel="stylesheet" href="jstree/themes/default/style.min.css" />
</head>
<body>
<div class="path-area">
<input class="form-control" id="path" type="text" placeholder="Path (Regex)...">
<button class="btn btn-default btn-sm" id="collapse" title="Collapse All Diffs"><i class="glyphicon glyphicon-minus"></i></button>
<button class="btn btn-default btn-sm" id="expand" title="Expand All Diffs"><i class="glyphicon glyphicon-plus"></i></button>
</div>
<div id="tree"></div>
<div class="path-area">
<button class="btn btn-default btn-sm" id="collapse-tree" title="Collapse File Tree">Collapse Tree</i></button>
<button class="btn btn-default btn-sm" id="expand-tree" title="Expand File Tree">Expand Tree</i></button>
</div>
<script src="jquery-1.9.1.min.js"></script>
<script src="popup.js"></script>
<script src="jstree/jstree.min.js"></script>
</body>
</html>