-
Notifications
You must be signed in to change notification settings - Fork 46
/
setup.html
54 lines (40 loc) · 2.02 KB
/
setup.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>umm: Unofficial Moodle Mobile App</title>
<link rel="stylesheet" href="lib/jquery.mobile.1.0rc2.css" />
<link rel="stylesheet" href="lib/umoodle.css" />
<script type="text/javascript" charset="utf-8" src="lib/phonegap.1.2.0.js"></script>
<script src="lib/jquery.js"></script>
<script src="lib/xml2json.js"></script>
<script src="lib/md5.js"></script>
<script src="lib/common.js"></script>
<script src="lib/jquery.mobile.1.0rc2.js"></script>
</head>
<body>
<div data-role="page" id="page-setup">
<div data-role="header" data-position="fixed">
<a href="mysite.html" id="bback" data-role="button" data-icon="arrow-l"><span data-lang="back">Back</span></a>
<h1>Settings</h1>
<a id="bsave" data-icon="check" data-role="button"><span data-lang="save">Save</span></a>
</div>
<div data-role="content">
<label for="select-choice-0" class="select"><span data-lang="language">Language</span>:</label>
<select name="select-choice-0" id="select-choice-lang">
</select>
<input type="checkbox" name="debug_on" id="debug_on" class="custom" />
<label for="debug_on"><span data-lang="enabledebug">Enable debug</span></label>
<input type="checkbox" name="transitions_on" id="transitions_on" class="custom" />
<label for="transitions_on"><span data-lang="enablepagetransitions">Enable page transitions</span></label>
<div data-role="fieldcontain">
<label for="cache_expiration"><span data-lang="cachetimeseconds">Cache time (seconds)</span>:</label>
<input type="range" name="cache_expiration" id="cache_expiration" value="0" min="0" max="300" />
</div>
<p><a href="#" id="bpurge" data-role="button"><span data-lang="purgecaches">Purge caches</span></a></p>
</div>
<script type="text/javascript" src="lib/pages/setup.js"></script>
</div><!-- /page -->
</body>
</html>