-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathoptions.html
More file actions
75 lines (68 loc) · 2.43 KB
/
Copy pathoptions.html
File metadata and controls
75 lines (68 loc) · 2.43 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
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
<!DOCTYPE html>
<html>
<head>
<title>Options | Pudu Extension</title>
<link rel="stylesheet" href="libs/font-awesome.min.css"/>
<link rel="stylesheet" href="libs/bootstrap.min.css"/>
<link rel="stylesheet" href="options.css"/>
</head>
<body style="padding:0 10px;">
<div class="page-header" style="margin-top: 10px; margin-bottom: 15px;">
<h1 class="pull-left">
<img src="/imgs/pudu-icon-38.png" style="margin-top: -7px;"/>
Pudu Extension
<small id="pudu-version"></small>
</h1>
<div class="pull-right">
<a class="btn btn-link" href="http://pudu.devindy.com/donate.html" target="_blank">
<i class="icon-heart"></i> Donate
</a>
<button id="pudu-options-reset" class="btn btn-link">
<i class="icon-refresh"></i> Reset extension settings
</button>
</div>
<div class="clearfix"></div>
</div>
<h3>Options</h3>
<ul class="unstyled">
<li>
<label for="pudu-options-signature" class="checkbox">
<input type="checkbox" name="options-signature" id="pudu-options-signature"/>
Hide signature
</label>
</li>
<li>
<label for="pudu-options-comment-number" class="checkbox">
<input type="checkbox" name="options-signature" id="pudu-options-comment-number"/>
Hide comment number
</label>
</li>
</ul>
<h3>Line sticker <small>Select what you like!</small></h3>
<div class="input-prepend" style="margin-bottom: 20px;">
<span class="add-on"><i class="icon-filter"></i></span>
<input id="pudu-stickers-filter" type="text" placeholder="Filter">
</div>
<ul class="thumbnails" id="pudu-stickers"></ul>
<!-- HIDE ZONE -->
<div class="modal hide fade" id="pudu-sticker-modal">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3></h3>
</div>
<div class="modal-body">
<ul class="thumbnails"></ul>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
<button class="btn btn-success"><i class="icon-ok"></i> Select</button>
</div>
</div>
<script src="libs/jquery-2.1.0.min.js"></script>
<script src="libs/bootstrap.min.js"></script>
<script src="pudu.config.js"></script>
<script src="pudu.stickers.js"></script>
<script src="pudu.utils.js"></script>
<script src="options.js"></script>
</body>
</html>