first commit
This commit is contained in:
45
webapp/index.html
Normal file
45
webapp/index.html
Normal file
@ -0,0 +1,45 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>Flighty</title>
|
||||
<style>
|
||||
html,
|
||||
body,
|
||||
body>div,
|
||||
#container,
|
||||
#container-uiarea {
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
||||
<script id="sap-ui-bootstrap" src="resources/sap-ui-core.js" data-sap-ui-theme="sap_fiori_3"
|
||||
data-sap-ui-resourceroots='{
|
||||
"mvcapp00124": "./"
|
||||
}' data-sap-ui-oninit="module:sap/ui/core/ComponentSupport" data-sap-ui-compatVersion="edge"
|
||||
data-sap-ui-async="true" data-sap-ui-frameOptions="trusted"></script>
|
||||
<script>
|
||||
sap.ui.getCore().attachInit(function () {
|
||||
sap.ui.require([
|
||||
"sap/m/Shell",
|
||||
"sap/ui/core/ComponentContainer"
|
||||
], function (Shell, ComponentContainer) {
|
||||
new Shell({
|
||||
app: new ComponentContainer({
|
||||
name: "mvcapp00124",
|
||||
settings: {
|
||||
id: "webapp"
|
||||
}
|
||||
})
|
||||
}).placeAt("content");
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body class="sapUiBody sapUiSizeCompact" id="content">
|
||||
</body>
|
||||
|
||||
</html>
|
Reference in New Issue
Block a user