-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (30 loc) · 778 Bytes
/
Copy pathindex.html
File metadata and controls
34 lines (30 loc) · 778 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
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<meta charset="UTF-8">
<script
id='sap-ui-bootstrap'
src='resources/sap-ui-core.js'
data-sap-ui-theme='sap_bluecrystal'
data-sap-ui-preload="async"
data-sap-ui-libs='sap.m, sap.ui.layout'
data-sap-ui-bindingSyntax="complex"
data-sap-ui-compatVersion="1.38"
data-sap-ui-resourceroots='{
"iba.practice": ".",
"iba.practice.mock": "service"
}'
data-sap-ui-xx-supportedLanguages="default" >
</script>
<script>
sap.ui.getCore().attachInit( function () {
jQuery.sap.require("iba.practice.Bootstrap");
iba.practice.Bootstrap.run();
});
</script>
</head>
<body class='sapUiBody' id='content'>
<div id="busyIndicator">Loading ...</div>
</body>
</html>