forked from kubo25/MultiEye
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreferences.html
34 lines (33 loc) · 1.16 KB
/
preferences.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
<!doctype html>
<html>
<head>
<title>Preferences</title>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300&subset=latin-ext" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="preferences.css">
</head>
<body>
<div class="rightPane"></div>
<ul class="preferences">
<li>
<span>Number of steps shown:</span>
<div class="prefTriangle"></div>
<input id="fixationCount" type="text" tabindex="1">
</li>
<li>
<span>Show sliding window</span>
<div class="prefTriangle"></div>
<div class="checkBox">
<input id="showSlidingWindow" type="checkbox" tabindex="2">
<label for="showSlidingWindow"></label>
</div>
</li>
</ul>
<div class="buttonContainer">
<input type="button" value="Apply" onclick="apply()" tabindex="22">
<input type="button" value="Cancel" onclick="cancel()" tabindex="21">
<input type="button" value="OK" onclick="ok()" tabindex="20">
</div>
<script src="js/preferences.js"></script>
</body>