forked from Imater/mindmap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
50 lines (37 loc) · 1.72 KB
/
index.php
File metadata and controls
50 lines (37 loc) · 1.72 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
48
49
50
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="ru" class="" style="">
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
<meta charset="utf-8">
<meta name="keywords" content="Карта ума своими руками"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="favicon.png" type="image/x-icon" />
<link rel="icon" href="favicon.png" type="image/x-icon" />
<head>
<link rel="stylesheet" href="mindmap.css">
<link rel="stylesheet" href="fontello/css/fontello.css">
<link rel="stylesheet" type="text/css" href="contextmenu/src/jquery.contextMenu.css"/>
<script src="js/jquery-1.10.1.min.js"></script>
<script src="js/jquery-ui-1.10.3.custom.min.js"></script>
<script src="js/jquery.jsPlumb-1.4.1-all.js"></script>
<script src="mindmap.js"></script>
<script src="contextmenu/src/jquery.contextMenu.js"></script>
<script src="contextmenu/src/jquery.ui.position.js"></script>
<script src="js/ydn.db-jquery-0.7.5.js"></script>
<title>Карта ума своими руками</title>
</head>
<body onload="jsDoFirst();" onresize="onResize()">
<div id="mindmap_header">
<i id="zoom_out" class="icon-zoom-out" title="Уменьшить карту"></i>
<i id="zoom_in" class="icon-zoom-in" title="Увеличить карту"></i>
<i id="collapse_all" class="icon-minus-circle" title="Свернуть все узлы"></i>
<i id="expand_all" class="icon-plus-circle" title="Развернуть все узлы"></i>
</div>
<div id="mindmap_content">
<div id="mindmap">
</div>
</div>
<div id="mindmap_footer">
</div>
</body>
</html>