-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
31 lines (30 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<title>Browser Rewind Options</title>
</head>
<body>
<div>
<input type="text" id="snapshottextbox" value="0" style="width:20px"/>
<input type="button" id="snapshotbutton" value="Snapshot"/>
</div><br/>
<div>
<input type="text" id="timestamptextbox" value="0" style="width:120px"/>
<input type="button" id="timestampbutton" value="Timestamp"/>
</div><br/>
<div>
<input type="text" id="eventsstarttextbox" value="0" style="width:40px"/>
<span>-</span>
<input type="text" id="eventsendtextbox" value="499" style="width:40px"/>
<input type="button" id="eventsbutton" value="Events"/>
<input type="button" id="last100eventsbutton" value="Last 100"/>
</div><br/>
<div id="displaydata"/></div>
<div id="numSnapshots"/></div><br/>
<div id="numEvents"/></div><br/>
<div id="timestamps"/></div>
</body>
</html>
<script src="jquery-2.1.1.min.js"></script>
<script src="playEvent.js"></script>
<script src="options.js"></script>