summaryrefslogtreecommitdiff
path: root/views/canvas
diff options
context:
space:
mode:
Diffstat (limited to 'views/canvas')
-rw-r--r--views/canvas/buttons/grow.pngbin0 -> 306 bytes
-rw-r--r--views/canvas/buttons/normal.pngbin0 -> 338 bytes
-rw-r--r--views/canvas/canvas.html23
3 files changed, 23 insertions, 0 deletions
diff --git a/views/canvas/buttons/grow.png b/views/canvas/buttons/grow.png
new file mode 100644
index 0000000..60348b4
--- /dev/null
+++ b/views/canvas/buttons/grow.png
Binary files differ
diff --git a/views/canvas/buttons/normal.png b/views/canvas/buttons/normal.png
new file mode 100644
index 0000000..47be98a
--- /dev/null
+++ b/views/canvas/buttons/normal.png
Binary files differ
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>