-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditor.html
More file actions
60 lines (51 loc) · 2.24 KB
/
editor.html
File metadata and controls
60 lines (51 loc) · 2.24 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
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<!--**************************************************************************
Copyright (C) Chicken Katsu 2013-2024
This code is protected by copyright under the terms of the
Creative Commons Attribution 4.0 International License
https://creativecommons.org/licenses/by/4.0/legalcode
contact cluck@chickenkatsu.co.uk
// USE AT YOUR OWN RISK - NO GUARANTEES OF ANY FORM ARE EITHER EXPRESSED OR IMPLIED
**************************************************************************-->
<title>Cellular Automata explorer - editor</title>
<!-- 3rd party libraries (bean) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/bean/1.0.15/bean.min.js"></script>
<!-- 3rd party libraries (jquery) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jcanvas/23.0.0/umd/jcanvas.min.js"></script>
<!-- 3rd party libraries (google visualisation) -->
<script src="https://www.gstatic.com/charts/loader.js"></script>
<!-- stylesheets -->
<link rel="stylesheet" href="css/CA.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css">
<!-- my useful functions -->
<script src="../jsinc/ck-inc/jquery/jquery.common.js"></script>
<script src="../jsinc/ck-inc/common.js"></script>
<script src="../jsinc/ck-inc/debug.js"></script>
<script src="../jsinc/ck-inc/converter.js"></script>
<script src="../jsinc/ck-inc/sparse.js"></script>
<!-- cellular automata classes -->
<script src="js/CA/catypes.js"></script>
<script src="js/CA/caevent.js"></script>
<script src="js/CA/cacell.js"></script>
<script src="js/CA/carule.js"></script>
<script src="js/CA/caimporter.js"></script>
<script src="js/CA/caindex.js"></script>
<!-- widgets for page -->
<script src="js/widgets/editor/caeditor.js"></script>
</head>
<body>
<h2>Cellular Automata JS Editor</h2>
<div id="editor"></div>
<script >
function onJqueryLoad(){
$("#editor").caeditor();
}
$(onJqueryLoad);
</script>
</body>
</html>