forked from LongDirtyAnimAlf/OpenUI5_RestModel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (49 loc) · 1.3 KB
/
index.html
File metadata and controls
52 lines (49 loc) · 1.3 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
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<title>Rest demo app</title>
<meta http-equiv='X-UA-Compatible' content='IE=edge' />
<meta charset="UTF-8">
<script
id='sap-ui-bootstrap'
type='text/javascript'
src="https://openui5beta.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='{
"sap.ui.demo.SapRestDemo" : "./"
}' >
</script>
<script>
//jQuery.sap.debug(true);
sap.ui.getCore().attachInit(function () {
sap.ui.require([
"sap/m/Shell",
"sap/ui/core/ComponentContainer"
], function (Shell, ComponentContainer) {
new Shell("Shell", {
title : "Sap Rest Demo",
showLogout : false,
app : new ComponentContainer({
name : 'sap.ui.demo.SapRestDemo'
}),
homeIcon : {
'phone' : 'img/57_iPhone_Desktop_Launch.png',
'phone@2' : 'img/114_iPhone-Retina_Web_Clip.png',
'tablet' : 'img/72_iPad_Desktop_Launch.png',
'tablet@2' : 'img/144_iPad_Retina_Web_Clip.png',
'favicon' : 'img/favicon.ico',
'precomposed': false
}
}).placeAt('content');
})
}
);
</script>
</head>
<body class='sapUiBody' id='content'>
</body>
</html>