-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·37 lines (29 loc) · 1.16 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
<!doctype html>
<html>
<head>
<title>LeMojs</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="node_modules/flat-ui/dist/css/flat-ui.min.css" rel="stylesheet">
<style> html, body, #app { height: 100%; } </style>
<style>
.addon-hover-to-see .hover-to-see {
opacity: 0;
}
.addon-hover-to-see:hover .hover-to-see {
opacity: 1;
}
</style>
</head>
<body>
<div id="app"></div>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/simple-list-draggable/jquery-simple-list-draggable.js"></script>
<script src="node_modules/flat-ui/dist/js/flat-ui.min.js"></script>
<script src="node_modules/react/dist/react.min.js"></script>
<script src="node_modules/react-dom/dist/react-dom.min.js"></script>
<script src="node_modules/svg-pathdata/dist/SVGPathData.js"></script>
<script src="node_modules/mo-js/build/mo.min.js"></script>
<script src="build/bundle.js"></script>
</body>
</html>