-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (26 loc) · 974 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (26 loc) · 974 Bytes
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
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TODO List based on XMPP JSON Patch Sync Model</title>
<script id='sap-ui-bootstrap' src='https://openui5.hana.ondemand.com/1.44.9/resources/sap-ui-core.js' data-sap-ui-resourceroots='{"todo": "./todo", "incentergy": "./src/incentergy", "strophe" : "https://cdnjs.cloudflare.com/ajax/libs/strophe.js/1.2.13/strophe"}'
data-sap-ui-theme='sap_belize' data-sap-ui-libs='sap.m' data-sap-ui-compatVersion='edge' data-sap-ui-preload='async'>
</script>
<script>
sap.ui.getCore().attachInit(function() {
new sap.ui.core.ComponentContainer({
name: "todo"
}).placeAt("content");
});
</script>
<style>
html,
body {
height: 100%;
}
</style>
</head>
<body class='sapUiBody' id='content'>
</body>
</html>