-
Notifications
You must be signed in to change notification settings - Fork 37
/
options.html
58 lines (57 loc) · 2.79 KB
/
options.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
<html>
<head>
<title>Options - Pretty Pull Requests</title>
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="options.css">
</head>
<body>
<div class="main">
<div class="header">
<div class="logo"><img src="ppr-logo/128x128.png"></div>
</div>
<div class="panel">
<div class="panel-body">
<form id="options-form">
<h1 class="page-header">Options</h1>
<div class="form-group">
<label for="url">
Github Enterprise URL
</label>
<input name="url" type="url" class="form-control">
</div>
<div class="control-group" id="auto-collapse-fields">
<label class="control-label" for="field1">Auto-Collapse Rules</label>
<div class="controls">
<div id="auto-collapse-form" autocomplete="off">
<div class="entry input-group">
<input class="form-control" name="autoCollapseExpressions" type="text" placeholder="Regex to auto-collapse" />
<span class="input-group-btn">
<button class="btn btn-success btn-add field-add-button" type="button">
<span class="glyphicon glyphicon-plus"></span>
</button>
</span>
</div>
</div>
<br>
</div>
</div>
<div class="checkbox">
<label>
<input name="saveCollapsedDiffs" type="checkbox">Save collapsed diffs
</label>
</div>
<div class="checkbox">
<label>
<input name="tabSwitchingEnabled" type="checkbox">Allow backtick to switch tabs on pull requests
</label>
</div>
<button class="btn btn-primary" id="save">Save</button>
</form>
<div id="status" class="bg-success"></div>
</div>
</div>
</div>
<script src="jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="options.js"></script>
</body>
</html>