forked from hiediutley/HelloPhoneGap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebug.html
More file actions
124 lines (94 loc) · 4.26 KB
/
Copy pathdebug.html
File metadata and controls
124 lines (94 loc) · 4.26 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<!-- Change this if you want to allow scaling -->
<meta name="viewport" content="width=default-width; user-scalable=no" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="HelloPhoneGap.css" type="text/css"/>
<title>HelloPhoneGap</title>
<script type="text/javascript" charset="utf-8" src="phonegap.0.9.4.min.js"></script>
<script type="text/javascript" charset="utf-8" src="PhoneGapShim1.js"></script>
<script type="text/javascript" charset="utf-8">
var pictureSource; // picture source
var destinationType; // sets the format of returned value
function onBodyLoad()
{
document.addEventListener("deviceready",onDeviceReady,false);
}
/* When this function is called, PhoneGap has been initialized and is ready to roll */
function onDeviceReady()
{
phoneGapReady.innerHTML = "PhoneGap is Ready";
}
function getDeviceProperties() {
var element = document.getElementById('deviceProperties');
element.innerHTML = 'Device Name: ' + device.name + '<br />' +
'Device PhoneGap: ' + device.phonegap + '<br />' +
'Device Platform: ' + device.platform + '<br />' +
'Device UUID: ' + device.uuid + '<br />' +
'Device Version: ' + device.version + '<br />';
}
</script>
</head>
<body onload="onBodyLoad()">
<DIV class="phoneGapAPITitle">
<TABLE width="100%">
<TR>
<TD>
Device API
</TD>
<TD align="right"><a href="index.html">back</a>
</TD>
</TR>
</TABLE>
</DIV>
<DIV class="phoneGapAPI">
<TABLE>
<TR>
<TD>
<button onclick="getDeviceProperties();">getDeviceProperties()</button> <br>
</TD>
</TR>
<TR>
<TD id="deviceProperties" >
</TD>
</TR>
</TABLE>
</DIV>
<DIV class="phoneGapAPITitle">
<TABLE width="100%">
<TR>
<TD>
Accelerometer API
</TD>
<TD align="right"><a href="index.html">back</a>
</TD>
</TR>
</TABLE>
</DIV>
<DIV class="phoneGapAPI">
<TABLE>
<TR>
<TD>
<button class="phoneGapAPIButton" onclick="getCurrentAcceleration();">getCurrentAcceleration()</button>
</TD>
</TR>
<TR>
<TD id="currentAccelerationResult">
</TD>
</TR>
<TR>
<TD>
<button class="phoneGapAPIButton" onclick="startWatch();">startWatch(1000ms)</button>
<button class="phoneGapAPIButton" onclick="stopWatch();">stopWatch()</button>
</TD>
</TR>
<TR>
<TD id="watchResult">
</TD>
</TR>
</TABLE>
</DIV>
<DIV id="phoneGapReady" class="phoneGapReady">waiting for PhoneGap to initialize....</DIV>
</body>
</html>