-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
42 lines (32 loc) · 1.21 KB
/
index.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>UI5 Barcode Scanner</title>
<!-- UI5 Bootstrap with OpenUI5 -->
<script id="sap-ui-bootstrap" type="text/javascript"
src="resources/sap-ui-core.js"
data-sap-ui-theme="sap_bluecrystal"
data-sap-ui-xx-bindingSyntax="complex"
data-sap-ui-libs="sap.m, sap.ui.commons, sap.ui.table">
</script>
<!-- alternative SAPUI5/OpenUI5 locations
//OpenUI5
src="https://openui5.netweaver.ondemand.com/resources/sap-ui-core.js"
//use SAPUI5 from SAP HANACloud
src="https://sapui5.hana.ondemand.com/resources/sap-ui-core.js"
//within Eclipse with SAP UI Development Toolkit for HTML5
src="resources/sap-ui-core.js"
//serve locally with Node.js
src="http://localhost:8888/sapui5/1.18.11/resources/sap-ui-core.js"
-->
<!-- Custom Styles -->
<link rel="stylesheet" type="text/css" href="css/style.css" />
<!-- all App JavaScript Code start in app.js, no Code in HTML -->
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/app.js"></script>
</head>
<body class="sapUiBody" id="root">
</body>
</html>