-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (33 loc) · 1.1 KB
/
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
38
39
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta charset="UTF-8">
<title>OpenUI5 Charts Custom Controls</title>
<script
id='sap-ui-bootstrap'
src='https://openui5.hana.ondemand.com/resources/sap-ui-core.js'
data-sap-ui-theme='sap_bluecrystal'
data-sap-ui-libs='sap.m'
data-sap-ui-compatVersion='edge'
data-sap-ui-bindingSyntax='complex'
data-sap-ui-preload='async'
data-sap-ui-resourceroots='{
"agraebe.custom": "./webapp"
}'>
/*
for debugging mode, add sap-ui-debug=true to the URL
*/
</script>
<script>
sap.ui.getCore().attachInit(function () {
new sap.ui.core.ComponentContainer({name: "agraebe.custom", height: "100%"}).placeAt("content");
});
</script>
</head>
<body class="sapUiBody" id="content">
<a href="https://github.com/SAP/openui5-charting-custom-controls"><img
style="position: absolute; top: 0; right: 0; border: 0; z-index: 99;"
src="img/badge.png" alt="Fork me on GitHub"></a>
</body>
</html>