-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
112 lines (94 loc) · 3.55 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!doctype html>
<!--
This page is shown when the extension button is clicked, because the
"browser_action" field in manifest.json contains the "default_popup" key with
value "popup.html".
-->
<html>
<head>
<title>Getting Started Extension's Popup</title>
<style>
body {
font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
font-size: 100%;
}
#status {
/* avoid an excessively wide status text */
white-space: pre;
text-overflow: ellipsis;
overflow: hidden;
max-width: 400px;
}
body {
min-width: 300px;
padding: 10px;
}
</style>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous">
<!--
- JavaScript and HTML must be in separate files: see our Content Security
- Policy documentation[1] for details and explanation.
-
- [1]: https://developer.chrome.com/extensions/contentSecurityPolicy
-->
<script src="popup.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
</head>
<body>
<div>
</div>
<div id="body">
<!-- <div class="well well-sm">
<img id="userImage" src="https://success.salesforce.com/resource/1480118400000/sharedlayout/img/new-user-image-default.png" />
<h4 id="username">Username</h4>
<button id="myOpenIssues" type="button" class="btn btn-primary">My Open Issues</button>
<button id="toVerify" type="button" class="btn btn-primary">Verifications</button>
</div> -->
<div class="row">
<div class="col-lg-6">
<div class="input-group input-group-sm">
<span class="input-group-addon" id="basic-addon1">Bug</span>
<input type="text" class="form-control" id="bugid">
<span class="input-group-btn">
<button class="btn btn-default" id="searchLCSBug" type="button">Go!</button>
</span>
</div><!-- /input-group -->
</div><!-- /.col-lg-6 -->
</div><!-- /.row -->
<div class="row">
<div class="col-lg-6">
<div class="input-group input-group-sm">
<span class="input-group-addon" id="basic-addon1">Task</span>
<input type="text" class="form-control" id="caseid">
<span class="input-group-btn">
<button class="btn btn-default" id="searchLCSTask" type="button">Go!</button>
</span>
</div><!-- /input-group -->
</div><!-- /.col-lg-6 -->
</div><!-- /.row -->
<div class="row">
<div class="col-lg-6">
<div class="input-group input-group-sm">
<span class="input-group-addon" id="basic-addon1">Jira</span>
<input type="text" class="form-control" id="sIssue">
<span class="input-group-btn">
<button class="btn btn-default" id="searchIssue" type="button">Go!</button>
</span>
</div><!-- /input-group -->
</div><!-- /.col-lg-6 -->
</div><!-- /.row -->
<!-- <div class="well well-sm">
<form class="form-inline">
<div class="form-group">
<input type="text" class="form-control" id="stext" placeholder="Text to search">
</div>
<div class="form-group">
<input type="text" class="form-control" id="sProject" placeholder="Project (e.g TEBASE)">
</div>
<button class="btn btn-default" id="searchText"> <span class="glyphicon glyphicon-search"></span> Search in JIRA</button>
</form>
</div> -->
</div>
</body>
</html>