-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoptions.html
64 lines (58 loc) · 1.31 KB
/
options.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
<html>
<head>
<title>ChromEmacs Options</title>
<link rel="stylesheet" type="text/css" href="options.css"/>
</head>
<body>
<div id="wrapper">
<h1>ChromEmacs Options</h1>
<div id="accordion">
<div id="defaults">
<h3>General Options</h3>
<div>
<label for="chrome_defaults">Turn off all chrome defaults</label>
<input id="chrome_defaults" type="checkbox"/><br>
<label for="clearUserData">Reset Defaults (Clears User Data)</label>
<button type="button" id="clearUserData">Clear</button>
</div>
</div>
<div id="keybindings">
<h3>Key Bindings to Commands</h3>
<div>
In order to delete a command, click Edit, empty the keys column input, and click save.
<table id="cmd_cont">
<thead>
<tr><th>Keys</th><th>Action</th><th>Save/Edit</th></tr>
</thead>
<tbody id="cmds">
</tbody>
<tfoot>
<tr>
<td colspan="3">
<button type="button" id="add_new_cmd">Add New Keybinding</button>
</td>
</tr>
</tfoot>
</table>
</div>
</div>
<div>
<h3>Userstyles</h3>
<div>
<textarea id="emacs_css" cols="30" rows="10"></textarea><br>
<button id="save_user_css">Save CSS</button>
</div>
</div>
<div id="excluded_domains">
<h3>Excluded Domains</h3>
<div>
Not functional
<button type="button">Add</button>
<div/>
</div>
</div>
</div>
</body>
<script type="text/javascript" src="jquery-min.js"></script>
<script type="text/javascript" src="options.js"></script>
</html>