1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!DOCTYPE html>
- <html>
- <head>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
- <script src="js/myEvents.js"></script>
- <script>
-
- </script>
- <link rel="stylesheet" type="text/css" href="styles/grapheditor.css">
- </head>
- <body>
- <div class="topContainer">
- MODELING TOOL
- </div>
- <div class="sidebarContainer">
- <button id="load_nodeset" type="button">
- Load Nodeset file
- </button>
- <button id="delete_nodeset" type="button">
- Delete Nodeset file
- </button>
- <button id="export_model" type="button">
- Export new model
- </button>
- </div>
- <div class="addressSpaceContainer">
- <div class="aSTableStart">
- <table>
- <tbody>
- <tr>
- <td>
- <img class="nodeRoot" src="graphics/node.svg" height="100" width="100"></img>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- <div class="aSTableMain">
- <table>
- <tbody id="tree">
- </tbody>
- </table>
- </div>
- </section>
- </div>
- </body>
- </html>
|