-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (47 loc) · 2.28 KB
/
index.html
File metadata and controls
50 lines (47 loc) · 2.28 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
<title>GitHub Issue Board</title>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300' rel='stylesheet' type='text/css'>
<script src="jquery-1.11.3.min.js"></script>
</head>
<body>
<div id="main">
<div id="filter" class="filter">
<h1><img src="git-utils-small.png" style="display: inline-block;"> GitHub Utils</h1>
<div class="introduction">
<p>In the github pull request, you may not be interested on whole content of pull request because most of
them are boilerplate code. In this extension, you can define rules !<br>
You have two options:</p>
<ol>
<li>Add pattern of which type of file you are going to exclude from pull request(no need to include
'*').
</li>
<li>Add pattern of which type of file you are going to include in pull request.</li>
</ol>
<p>Note: you are able to choose only one option at a time. </p>
</div>
<span id="message-text" style="display:none;"></span>
<div class="filter-field">
<p><label for="exclusive"><input type="radio" name="filter-radio" id="exclusive" value="1"> Exclude these
files (eg: cliper.java, listener.java,/base/)</label>
<textarea rows="5" cols="65" id="filterArea1" disabled></textarea></p>
<p><label for="inclusive"><input type="radio" name="filter-radio" id="inclusive" value="0"> Only include
these files (eg: .css,.js)</label>
<textarea rows="5" cols="65" id="filterArea2" disabled></textarea></p>
<button id="filter-button">Save</button>
</div>
<div class="clear-all"></div>
</div>
<div id="jira-board-view">
<button id="board-button">Issue boards</button>
</div>
</div>
<script src="popup.js"></script>
<script src="extension.js"></script>
</body>
</html>