forked from TobiasOetzel/mdSkeleton
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproduction.html
42 lines (36 loc) · 1.02 KB
/
production.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
40
41
42
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta charset="UTF-8">
<title>MD Template</title>
<script id="sap-ui-bootstrap"
src="resources/sap-ui-core.js"
data-sap-ui-libs="sap.m"
data-sap-ui-theme="sap_bluecrystal"
data-sap-ui-preload="async"
data-sap-ui-bindingSyntax="complex"
data-sap-ui-compatVersion="edge"
data-sap-ui-resourceroots='{"sap.ui.demo.mdtemplate": "./app/"}'
data-sap-ui-frameOptions='deny'>
</script>
<script>
// TODO: do this in the bootstrap when feature is implemented in the UI5 core
sap.ui.getCore().attachInit(function () {
sap.ui.require([
"sap/m/Shell",
"sap/ui/core/ComponentContainer"
], function (Shell, ComponentContainer) {
// initialize the UI component
new Shell({
app: new ComponentContainer({
height : "100%",
name : "sap.ui.demo.mdtemplate"
})
}).placeAt("content");
});
});
</script>
</head>
<body class="sapUiBody" id="content"></body>
</html>