-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
52 lines (50 loc) · 1.72 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
<!--//////////////////////////////////////////////////////////////////////
// //
// EasyJump (c) 2011 sojingle.net all rights reserved. //
// //
///////////////////////////////////////////////////////////////////////-->
<html>
<head>
<title>Easy Jump Options</title>
<link rel="stylesheet" href="assets/styles/options.css" type="text/css" />
<script src="assets/libs/jquery-1.5.2.min.js" type="text/javascript" ></script>
<script src="assets/scripts/options.js" type="text/javascript" ></script>
</head>
<body onload="init()">
<div id="header">
</div>
<div id="body">
<div id=optionsContainer">
<div id="rules">
<table id="rulesTable" class="optionGroup">
<tr class="tableHeader">
<th class="ruleName">Rule Name</th>
<th class="symbolPattern">Symbol Pattern</th>
<th class="replaceUrl">Replace URL</th>
<th class="removeButton"></th>
</tr>
<!--
<tr class="ruleRow">
<td><input class="ruleName" type="text"/></td>
<td><input class="symbolPattern" type="text"/></td>
<td><input class="replaceUrl" type="text"/></td>
<td><button class="removeButton" onclick="deleteRow()">Delete</button></td>
</tr>
-->
</table>
<button class="button" id="newRule" onclick="newRow()">Add Rule</button>
</div>
</div>
<div id="control" class="control">
<button onclick="saveOptions();" >Save</button>
<button onclick="closeWindow();" >Close</button>
<button onclick="restoreOptions();">Restore</button>
<div id="status"></div>
</div>
<div id="help" class="help">
<p><a href="http://sojingle.net/easyjump" target="_blank">View Help</a>
</p>
</div>
</div>
</body>
</html>