diff options
Diffstat (limited to 'views/canvas')
-rw-r--r-- | views/canvas/buttons/grow.png | bin | 0 -> 306 bytes | |||
-rw-r--r-- | views/canvas/buttons/normal.png | bin | 0 -> 338 bytes | |||
-rw-r--r-- | views/canvas/canvas.html | 23 |
3 files changed, 23 insertions, 0 deletions
diff --git a/views/canvas/buttons/grow.png b/views/canvas/buttons/grow.png Binary files differnew file mode 100644 index 0000000..60348b4 --- /dev/null +++ b/views/canvas/buttons/grow.png diff --git a/views/canvas/buttons/normal.png b/views/canvas/buttons/normal.png Binary files differnew file mode 100644 index 0000000..47be98a --- /dev/null +++ b/views/canvas/buttons/normal.png diff --git a/views/canvas/canvas.html b/views/canvas/canvas.html new file mode 100644 index 0000000..150afdb --- /dev/null +++ b/views/canvas/canvas.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="UTF-8"> +<link rel="stylesheet" href="../style/canvas.css" type="text/css"> +<script type="text/javascript" src="../script/prototype.js"></script> +<script type="text/javascript" src="../script/utils.js"></script> +<script type="text/javascript" src="../script/schematic.js"></script> +<script type="text/javascript" src="../script/primatives.js"></script> +<script type="text/javascript" src="../script/connections.js"></script> +<script type="text/javascript"> +var loaded=false; +var circuit=null; +load=function(){ + circuit=new Schematic(document.body); +// parent.webtronics.circuit=circuit; + loaded=true; +} +</script> +</head> +<body onload='load()'> +</body> +</html> |