diff options
author | Adhitya Kamakshidasan | 2016-04-07 19:45:17 +0000 |
---|---|---|
committer | Adhitya Kamakshidasan | 2016-04-07 19:45:17 +0000 |
commit | 2451f3354b58192365d5deffa5d4700e4472d526 (patch) | |
tree | 569174b4db0a483a7d3b7b5926c8f516f3056f16 /index.html | |
parent | 5d474b6e265806c9df3fc80e06f8b4dd7fe16aea (diff) | |
download | xcos-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.html | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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); |