forked from mendix/mx-cordova-www-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (20 loc) · 819 Bytes
/
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
<!doctype html>
<html>
<head>
<title>Mendix Mobile</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"/>
<script type="text/javascript" charset="utf-8" src="cordova-1.7.0.js"></script>
<script type="text/javascript" charset="utf-8" src="mxapp-min.js"></script>
<script type="text/javascript">
// Change this to the base URL of your Mendix app.
startup("http://app.example.com");
document.addEventListener("deviceready", function() {
addCss("mxclientsystem/mobile/ui/mobile.css");
addScript("mxclientsystem/mobile/mobile.js");
}, false);
</script>
</head>
<body>
<div id="content"></div>
</body>
</html>