summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorAdhitya Kamakshidasan2016-04-07 19:45:17 +0000
committerAdhitya Kamakshidasan2016-04-07 19:45:17 +0000
commit2451f3354b58192365d5deffa5d4700e4472d526 (patch)
tree569174b4db0a483a7d3b7b5926c8f516f3056f16 /index.html
parent5d474b6e265806c9df3fc80e06f8b4dd7fe16aea (diff)
downloadxcos-on-web-2451f3354b58192365d5deffa5d4700e4472d526.tar.gz
xcos-on-web-2451f3354b58192365d5deffa5d4700e4472d526.tar.bz2
xcos-on-web-2451f3354b58192365d5deffa5d4700e4472d526.zip
Data Structures for holding details added
Diffstat (limited to 'index.html')
-rw-r--r--index.html7
1 files changed, 5 insertions, 2 deletions
diff --git a/index.html b/index.html
index 26791e2..37c1170 100644
--- a/index.html
+++ b/index.html
@@ -22,6 +22,9 @@
<!-- Loads and initializes the library -->
<script type="text/javascript" src="src/js/mxClient.js"></script>
+
+ <script type="text/javascript" src="src/js/xcos/core/details.js"></script>
+ <script type="text/javascript" src="json2.js"></script>
<link rel="stylesheet" href="jquery/jquery-ui.css">
<script src="jquery/jquery-1.8.2.js"></script>
@@ -264,8 +267,6 @@
});
addToolbarButton(editor, toolbar, 'export', 'Export', 'images/export1.png');
-
- // ---
// Adds toolbar buttons into the status bar at the bottom
// of the window.
@@ -840,6 +841,8 @@
ds.setGuidesEnabled(true);
};
+
+ // Create ports
function createPorts(graph, block, left, top, right, bottom){
createInputPorts(graph, block, left, top);
createOutputPorts(graph, block, right, bottom);