forked from fex-team/kityminder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimport.js
executable file
·76 lines (76 loc) · 2.12 KB
/
import.js
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/**
* 开发版本的文件导入
*/
(function() {
var paths = [
'core/kityminder.js',
'core/utils.js',
'core/command.js',
'core/node.js',
'core/module.js',
'core/event.js',
'core/minder.js',
'core/minder.data.compatibility.js',
'core/minder.data.js',
'core/minder.event.js',
'core/minder.module.js',
'core/minder.command.js',
'core/minder.node.js',
'core/minder.select.js',
'core/keymap.js',
'core/minder.lang.js',
'core/minder.defaultoptions.js',
'core/minder.preference.js',
'core/browser.js',
'core/layout.js',
'core/connect.js',
'core/render.js',
'core/theme.js',
'core/template.js',
'layout/default.js',
'layout/default.connect.js',
'layout/bottom.js',
'layout/filetree.js',
'theme/default.js',
'theme/snow.js',
'theme/fresh.js',
'template/structure.js',
'module/node.js',
'module/text.js',
'module/expand.js',
'module/outline.js',
'module/geometry.js',
'module/history.js',
'module/progress.js',
'module/priority.js',
'module/image.js',
'module/resource.js',
'module/view.js',
'module/dragtree.js',
'module/dropfile.js',
'module/keyboard.js',
'module/select.js',
'module/history.js',
'module/editor.js',
'module/editor.range.js',
'module/editor.receiver.js',
'module/editor.selection.js',
'module/basestyle.js',
'module/font.js',
'module/zoom.js',
'module/hyperlink.js',
'module/arrange.js',
'module/paste.js',
'protocal/xmind.js',
'protocal/freemind.js',
'protocal/mindmanager.js',
'protocal/plain.js',
'protocal/json.js',
'protocal/png.js',
'protocal/svg.js'
];
var basePath = 'src/';
while (paths.length) {
document.write('<script type="text/javascript" src="' + basePath + paths.shift() + '"></script>');
}
})();