forked from chaiko/tab_menu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
28 lines (24 loc) · 705 Bytes
/
Copy pathoptions.html
File metadata and controls
28 lines (24 loc) · 705 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Tab Menu Options</title>
<script src="jquery.min.js"></script>
<script src="options.js"></script>
<style>
body { padding: 0px; font: 14px; line-height: 24px;}
#status { color: green; }
input.radio { margin-left: 6px; margin-right: 4px; }
</style>
</head>
<body>
<div id="status"></div>
<label>
Display tabs for: <br/>
<input type="radio" name="window-mode" value="current" class="radio">Current window <br/>
<input type="radio" name="window-mode" value="all" class="radio">All windows <br/>
</label>
<br/>
<button id="save">Save</button>
</body>
</html>