-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 910 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
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta charset="UTF-8">
<title>Edukans schoenmaatje</title>
<script
id="sap-ui-bootstrap"
src="resources/sap-ui-core.js"
data-sap-ui-theme="sap_bluecrystal"
data-sap-ui-libs="sap.m, sap.ui.layout, sap.ui.core"
data-sap-ui-bindingSyntax="complex"
data-sap-ui-preload="async"
data-sap-ui-resourceroots='{
"edukans": "./"
}'>
</script>
<script type="text/javascript" src="../cordova.js"></script>
<script>
document.addEventListener("deviceready", deviceReady, false);
function deviceReady() {
sap.ui.getCore().attachInit(function () {
new sap.m.Shell({
app: new sap.ui.core.ComponentContainer({
name: "edukans",
height: "100%"
})
}).placeAt("content");
});
}
</script>
</head>
<body class="sapUiBody" id="content">
</body>
</html>