blob: 7b4c909e8b580d5915e920ab655848278c22376e (
plain)
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
70
|
<div class="page hidden" id="systemPage">
<h1 i18n-content="systemPage"></h1>
<section>
<h3 i18n-content="datetime_title"></h3>
<table class="option-control-table">
<tr>
<td class="option-name" i18n-content="timezone"></td>
<td class="option-value">
<select id="timezone-select" class="control"
pref="cros.system.timezone"></select>
</td>
</tr>
</table>
</section>
<section>
<h3 i18n-content="touchpad"></h3>
<table class="option-control-table">
<tr>
<td class="option-name" i18n-content="sensitivity"></td>
<td class="option-value">
<input id="sensitivity-range" type="range" min="1" max="10"
pref="settings.touchpad.sensitivity" class="touch-slider">
</td>
</tr>
<tr>
<td class="option-name" i18n-content="speed_factor"></td>
<td class="option-value">
<input id="speed-range" type="range" min="1" max="10"
pref="settings.touchpad.speed_factor" class="touch-slider">
</td>
</tr>
<tr>
<td class="option-name" colspan="2"><label><input
id="tap-to-click-check"
pref="settings.touchpad.enable_tap_to_click"
type="checkbox"><span i18n-content="enable_tap_to_click"></span></label></td>
</tr>
<tr>
<td class="option-name" colspan="2"><label><input
id="vert-scroll-check"
pref="settings.touchpad.enable_vert_edge_scroll"
type="checkbox"><span
i18n-content="enable_vert_edge_scroll"></span></label></td>
</tr>
</table>
</section>
<section>
<h3 i18n-content="language"></h3>
<table class="option-control-table">
<tr>
<td class="option-name"><button id="language-button"
i18n-content="language_customize"></button>
</td>
<td class="option-name"><button id="modifier-keys-button"
i18n-content="modifier_keys_customize"></button>
</td>
</tr>
</table>
</section>
<section>
<h3 i18n-content="accessibility_title"></h3>
<table class="option-control-table">
<tr>
<td class="option-name"><label><input id="accesibility-check"
pref="settings.accessibility" type="checkbox"><span
i18n-content="accessibility"></span></label></td>
</tr>
</table>
</section>
</div>
|