-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·111 lines (97 loc) · 4.4 KB
/
Copy pathindex.html
File metadata and controls
executable file
·111 lines (97 loc) · 4.4 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
<!DOCTYPE html>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<link rel="stylesheet" href="js/dojo-1.9.1/dojox/mobile/themes/android/android.css" type="text/css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/index.css" />
<!-- <script src="http://10.0.2.2:8080/target/target-script-min.js#anonymous"></script> -->
<!-- <script type="text/javascript" src="cordova.js"></script> -->
<script>
var dojoConfig = {
isDebug: 1,
async: 1,
has: {
"dojo-debug-messages": true
},
baseUrl: “/js/”,
"packages" : [
{
"location" : "./dojo-1.9.1/dijit",
"name" : "dijit"
},
{
"location" : "./dojo-1.9.1/dojo",
"name" : "dojo"
},
{
"location" : "./dojo-1.9.1/dojox",
"name" : "dojox"
},
]
}
</script>
<script type="text/javascript" src="js/dojo-1.9.1/dojo/dojo.js"> </script>
<!-- <script data-dojo-config="async: 1"
src="http://ajax.googleapis.com/ajax/libs/dojo/1.8.5/dojo/dojo.js"></script> -->
<!-- <script type="text/javascript" src="js/dojo-1.9.1/dojox/mobile/parser.js" > </script> -->
<title>Hello World</title>
</head>
<body>
<!-- ACCIDENT TOOLKIT PAGE -->
<!-- <div dojoType="dojox.mobile.View" id="accHelp" selected="true">
<h1 dojoType="dojox.mobile.Heading">Accident</h1>
<div class="text">If you are in an accident, you should first move to a safe
location. Below are some additional actions you can take:</div>
<ul dojoType="dojox.mobile.RoundRectList">
<li dojoType="dojox.mobile.ListItem"
onclick="window.location='geo:0,0?q=police';">Call the Police</li>
<li dojoType="dojox.mobile.ListItem"
onclick="window.location='geo:0,0?q=towing';">Call for a Tow Truck</li>
<li dojoType="dojox.mobile.ListItem" moveTo="accInfo" transition="slide"
onClick="itemClicked();">Exchange Driver Info</li>
<li dojoType="dojox.mobile.ListItem" moveTo="accInfo" transition="slide"
onClick="itemClicked();">Record Accident Location</li>
<li dojoType="dojox.mobile.ListItem" moveTo="accInfo" transition="slide"
onClick="itemClicked();">Take Photos of Accident</li>
</ul>
</div>
-->
<!-- EXCHANGE DRIVER INFO PAGE -->
<!--
<div dojoType="dojox.mobile.View" id="accInfo">
<h1 dojoType="dojox.mobile.Heading" back="Accident" moveTo="accHelp"
onClick="console.log('Going back');">Driver</h1>
<h2 dojoType="dojox.mobile.RoundRectCategory">Other Driver Info</h2>
</div>
-->
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript">
dojo.require("dojox/mobile/parser");
dojo.require("dojox/mobile");
</script>
<script type="text/javascript">
app.initialize();
function itemClicked() {
console.log("itemClicked()");
}
</script>
</body>
</html>