-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (23 loc) · 710 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (23 loc) · 710 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSMS</title>
<!-- Webix Library -->
<script type="text/javascript" src="./node_modules/webix/webix.js"></script>
<link rel="stylesheet" type="text/css" href="./node_modules/webix/skins/mini.css">
<!-- App -->
<script type="text/javascript" src="codebase/app.js"></script>
<link rel="stylesheet" type="text/css" href="codebase/app.css">
<script src="//cdn.webix.com/components/edge/justgage/justgage.js"></script>
<script type="text/javascript">
webix.ready(function(){
if (webix.CustomScroll)
webix.CustomScroll.init();
const app = new csms.App();
app.render(document.body);
});
</script>
</head>
<body></body>
</html>