-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (42 loc) · 2.1 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<link rel="stylesheet" type="text/css" href="css/jquery.mobile.css" />
<link rel="stylesheet" type="text/css" href="css/jquery.mobile.theme.css" />
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.mobile.js"></script>
<script type="text/javascript" src="http://cloudfront.loggly.com/js/loggly.tracker-2.0.min.js"></script>
<script type="text/javascript" src="js/debug.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<title>Accelerometer Data</title>
</head>
<body>
<div data-role="page" id="home">
<header data-role="header">
<h1>Accelerometer Data</h1>
</header>
<div data-role="content">
<div id="deviceInfo">Device info:</div>
<button id="startBtn">start</button>
<button id="stopBtn">stop</button>
<div id="dot"></div>
<div id="accelerometerData">Obtaining data...</div>
<div id="geolocationData">Obtaining data...</div>
<div id="contacts">
<h1>My Contacts</h1>
<ul id="contactList" data-role="listview" data-inset="true"></ul>
</div>
</div>
<footer data-role="footer">
<h3>Copyright © 2015
</footer>
</div>
</body>
</html>