-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.html
73 lines (73 loc) · 2.86 KB
/
config.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Quick Settings Config</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1">
<meta name="theme-group" content="theme-settings">
<meta name="theme-color" content="var(--header-background)">
<link rel="stylesheet" type="text/css" href="bower_components/base/base.css">
<link rel="stylesheet" type="text/css" href="bower_components/gaia-theme/gaia-theme.css">
<!--rel="stylesheet" type="text/css" href="bower_components/gaia-fonts/style.css"-->
<link rel="stylesheet" type="text/css" href="style/lists.css">
<!-- <link rel="stylesheet" type="text/css" href="bower_components/gaia-icons/gaia-icons.css">-->
<script src="bower_components/gaia-component/gaia-component.js"></script>
<script src="bower_components/gaia-icons/gaia-icons.js"></script>
<script src="bower_components/gaia-header/dist/gaia-header.js"></script>
<script defer src="/shared/js/component_utils.js"></script>
<script defer src="/shared/elements/gaia_switch/script.js"></script>
<link rel="stylesheet" type="text/css" href="app://theme.gaiamobile.org/shared/elements/gaia-theme/gaia-theme.css">
<script type="text/javascript" src="config.js" defer></script>
</head>
<body class="theme-settings">
<section is="quick-settings-status" role="region">
<gaia-header action="close">
<h1 data-l10n-id="app-title">Quick Settings</h1>
</gaia-header>
<div>
<ul>
<li>
<gaia-switch id="quick-settings-nfc">
<label data-l10n-id="nfc">NFC</label>
</gaia-switch>
</li>
<li>
<gaia-switch id="quick-settings-volume">
<label data-l10n-id="volume">Silence incomming calls</label>
</gaia-switch>
</li>
<li>
<gaia-switch id="quick-settings-flashlight">
<label data-l10n-id="flashlight">Flash light</label>
</gaia-switch>
</li>
<li>
<gaia-switch id="quick-settings-hotspot">
<label data-l10n-id="hotspot">Hotspot</label>
</gaia-switch>
</li>
<li>
<gaia-switch id="quick-settings-orientation">
<label data-l10n-id="orientation">Lock orientation</label>
</gaia-switch>
</li>
<li>
<gaia-switch id="quick-settings-powersave">
<label data-l10n-id="powersave">Battery save mode</label>
</gaia-switch>
</li>
<li>
<gaia-switch id="quick-settings-location">
<label data-l10n-id="location">Geolocation</label>
</gaia-switch>
</li>
<li>
<gaia-switch id="quick-settings-developer">
<label data-l10n-id="developer">Developer Panel</label>
</gaia-switch>
</li>
</ul>
</div>
</section>
</body>
</html>