-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (38 loc) · 1.22 KB
/
Copy pathindex.html
File metadata and controls
46 lines (38 loc) · 1.22 KB
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
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title>Products</title>
<script>
window['sap-ushell-config'] = {
defaultRenderer: 'fiori2',
applications: {
"masterDetail-display": {
title: "Available Products",
description: "A Fiori application.",
additionalInformation: "SAPUI5.Component=com.sap.fioriapp",
applicationType: "URL",
url: "."
}
}
};
</script>
<script src="https://sapui5.hana.ondemand.com/test-resources/sap/ushell/bootstrap/sandbox.js"></script>
<script
id="sap-ui-bootstrap"
src="https://sapui5.hana.ondemand.com/resources/sap-ui-core.js"
data-sap-ui-libs="sap.m,sap.ushell,sap.fe.templates,sap.collaboration,sap.ui.layout"
data-sap-ui-compatVersion="edge"
data-sap-ui-theme="sap_fiori_3"
data-sap-ui-resourceroots='{"com.sap.fioriapp": "../"}'
data-sap-ui-frameOptions="allow">
</script>
<script>
sap.ui.getCore().attachInit(
() => sap.ushell.Container.createRenderer().placeAt('content')
)
</script>
</head>
<body class="sapUiBody" id="content"></body>
</html>