-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
executable file
·53 lines (42 loc) · 1.39 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="A basic template for a Chrome Extension using Twitter Bootstrap 3">
<meta name="author" content="Elliot Hesp">
<title>Chrome Extension with Twitter Bootstrap 3.0</title>
<!-- Scripts -->
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/bootstrap-switch.min.js"></script>
<script src="js/popup.js"></script>
<!-- Cascading Style Sheets -->
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="css/bootstrap-switch.min.css" rel="stylesheet" media="screen">
<link href="css/custom.css" rel="stylesheet" media="screen">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-6">
<!-- character selector -->
<div class="btn-group">
<button type="button" id="select-char" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span id="button-value">Character </span><span class="caret"></span>
</button>
<ul class="dropdown-menu">
</ul>
</div>
</div>
<!-- toggle on off -->
<div class="col-xs-6" id="on-off-div">
</div>
</div>
</div>
</br>
<div class="container">
<div class="row" id="collection">
</div>
</div>
</body>
</html>