-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
32 lines (29 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Waltz</title>
<link rel="shortcut icon" href="images/platform/favicon.png">
<link rel="stylesheet" href="https://cdn.webix.com/7.3/skins/mini.css" type="text/css">
<!-- <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">-->
<link rel="stylesheet" href="//cdn.materialdesignicons.com/5.2.45/css/materialdesignicons.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://cdn.webix.com/components/hint/hint.css">
</head>
<body oncontextmenu="return false;">
<svg id="ajax-loader" class="spinner" width="65px" height="65px" viewBox="0 0 66 66" xmlns="http://www.w3.org/2000/svg">
<circle class="path" fill="none" stroke-width="6" stroke-linecap="round" cx="33" cy="33" r="30"></circle>
</svg>
<script type="application/javascript" src="https://cdn.webix.com/7.3/webix.js"></script>
<!-- Webix Hint, use CDN or files in this repo -->
<script type="text/javascript" src="https://cdn.webix.com/components/hint/hint.js"></script>
<script type="application/javascript" src="https://cdn.plot.ly/plotly-latest.js"></script>
<!--panZoom-->
<script type="application/javascript" src="https://ariutta.github.io/svg-pan-zoom/dist/svg-pan-zoom.min.js"></script>
<!-- JQuery -->
<script type="application/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<!-- Waltz -->
<script type="module" src="codebase/main.js"></script>
<link rel="stylesheet" href="codebase/main.css" type="text/css">
</body>
</html>