-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsettings.html
More file actions
69 lines (66 loc) · 2.57 KB
/
settings.html
File metadata and controls
69 lines (66 loc) · 2.57 KB
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
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1">
<meta charset="utf-8">
<title>Keyboard Settings</title>
<link rel="stylesheet" type="text/css" href="shared/style/headers.css"/>
<link rel="stylesheet" type="text/css" href="shared/style/switches.css"/>
<link rel="stylesheet" type="text/css" href="shared/style/lists.css"/>
<link rel="stylesheet" type="text/css" href="shared/style/switches.css"/>
<link rel="stylesheet" type="text/css" href="style/settings.css"/>
<link rel="resource" type="application/l10n" href="locales/locales.ini"/>
<script defer src="shared/js/l10n.js"></script>
<script defer src="js/settings/settings.js"></script>
</head>
<body class="skin-organic">
<section role="region">
<header>
<a id="back" href="#"><span class="icon icon-back">back</span></a>
<h1 data-l10n-id="keyboardSettings">Keyboard settings</h1>
</header>
<div>
<section data-type="list" id="general-settings">
<ul>
<li data-setting="keyboard.vibration">
<aside class="pack-end">
<label class="pack-checkbox">
<input type="checkbox" id="cb-vibration">
<span></span>
</label>
</aside>
<p><label data-l10n-id="vibration" for="cb-vibration">Vibration</label></p>
</li>
<li data-setting="keyboard.clicksound">
<aside class="pack-end">
<label class="pack-checkbox">
<input type="checkbox" id="cb-clickSound">
<span></span>
</label>
</aside>
<p><label data-l10n-id="clickSound" for="cb-clickSound">Click sound</label></p>
</li>
<li data-setting="keyboard.autocorrect">
<aside class="pack-end">
<label class="pack-checkbox">
<input type="checkbox" checked id="cb-autoCorrect">
<span></span>
</label>
</aside>
<p><label data-l10n-id="autoCorrect" for="cb-autoCorrect">Auto correction</label></p>
</li>
<li data-setting="keyboard.wordsuggestion">
<aside class="pack-end">
<label class="pack-checkbox">
<input type="checkbox" checked id="cb-wordSuggestion">
<span></span>
</label>
</aside>
<p><label data-l10n-id="wordSuggestion" for="cb-wordSuggestion">Word suggestion</label></p>
</li>
</ul>
</section>
</div>
</section>
</body>
</html>