-
Notifications
You must be signed in to change notification settings - Fork 4
/
options.html
24 lines (19 loc) · 876 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Extension Options</title>
</head>
<body>
Github Access Token: <input id="github_access_token" type="text" length="50" />
<br /><br /> Hide labels on closed PR's: <input type="checkbox" id="hide_labels_on_closed_prs" /> <br /> Hide closed PR's: <input type="checkbox" id="hide_closed_prs" /> <br /> Display PRs in columns: <input type='text' length='50' placeholder='In Progress, In Review...' id='pr_columns' /> <br />
<br /><br />
<div>Feature Flags:</div>
<div>Code Reviewers: <input type="checkbox" id="ff_code_reviewers" /></div>
<div>Travis Builds: <input type="checkbox" id="ff_travis_builds" /></div>
<div>Pride Month: <input type="checkbox" id="ff_pride" /></div>
<br/>
<div id="status"></div>
<button id="save">Save</button>
<script src="/options.js"></script>
</body>
</html>