-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (43 loc) · 2.01 KB
/
index.html
File metadata and controls
47 lines (43 loc) · 2.01 KB
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
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html" ;="" charset="utf-8">
<title>SmartTree - Smart MindMap</title>
<link rel="stylesheet" type="text/css" href="style.css">
<meta content="width=device-width, initial-scale=1" name="viewport" />
<script type="text/javascript">
! function(o, c) {
var n = c.documentElement,
t = " w-mod-";
n.className += t + "js",
("ontouchstart" in o || o.DocumentTouch && c instanceof DocumentTouch) && (n.className += t + "touch")
}(window, document);
</script>
<link href="https://uploads-ssl.webflow.com/img/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<link href="https://uploads-ssl.webflow.com/img/webclip.png" rel="apple-touch-icon" />
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/paper-full.js"></script>
<script type="text/javascript" src="exmap.js"></script>
</head>
<body>
<div>
<div class="toolbar grid" id="toolbar">
<a href="#" class="toolbutton" id="saveToFile">Save</a>
<a href="#" class="toolbutton" id="addSibling">Add sibling</a>
<a href="#" class="toolbutton" id="addChild">Add child</a>
<a href="#" class="toolbutton" id="addJoin">Add join</a>
<a href="#" class="toolbutton" id="editText">Edit text</a>
<a href="#" class="toolbutton" id="delete">Delete</a>
</div>
</div>
<script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.4.1.min.220afd743d.js" type="text/javascript" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<div id="dropfile">
<canvas id="myCanvas" width="100%" height="100%" tabindex=1 resize style="border: 0px solid;
user-select: none;
touch-action: auto;
-webkit-user-drag: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);">
</canvas>
</div>
</body>
</html>