forked from webix-hub/webix-adminapp-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (26 loc) · 840 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<!-- Webix Library -->
<script type="text/javascript" src="//cdn.webix.com/pro/9.0/webix.js?{VERSION}"></script>
<link rel="stylesheet" type="text/css" href="//cdn.webix.com/pro/9.0/webix.css?{VERSION}">
<!-- Icons -->
<link rel="stylesheet" href="https://cdn.materialdesignicons.com/3.6.95/css/materialdesignicons.min.css" crossorigin="anonymous">
<!-- App -->
<script type="text/javascript" src="codebase/app.js?{VERSION}"></script>
<link rel="stylesheet" type="text/css" href="codebase/app.css?{VERSION}">
<script>
webix.ready(function(){
if (webix.env.touch)
webix.ui.fullScreen();
else if (webix.CustomScroll)
webix.CustomScroll.init();
const app = new AppDemo({});
app.render();
});
</script>
</head>
<body></body>
</html>