updated index.js

This commit is contained in:
casperlamboo 2015-07-26 12:47:46 +02:00
parent 3e508cb862
commit 65495c0491
2 changed files with 39 additions and 35 deletions

View File

@ -1,45 +1,45 @@
<!DOCTYPE>
<html>
<head>
<head>
<title>Doodle3D Box</title>
<title>Doodle3D Box</title>
<style>
table, th, td {
border: 1px solid #dddddd;
font-size: 15px;
font-family: Verdana, Geneva, Tahoma, Arial, Helvetica, sans-serif;
line-height: 20px;
}
</style>
<style>
table, th, td {
border: 1px solid #dddddd;
font-size: 15px;
font-family: Verdana, Geneva, Tahoma, Arial, Helvetica, sans-serif;
line-height: 20px;
}
</style>
<script type="text/javascript" src="../jspm_packages/system.js"></script>
<script type="text/javascript" src="../config.js"></script>
<script type="text/javascript" src="../jspm_packages/system.js"></script>
<script type="text/javascript" src="../config.js"></script>
<script type="text/javascript">
System.import('example/app.js');
</script>
<script type="text/javascript">
System.import('example/app.js');
</script>
</head>
</head>
<body>
<table style="width:100%">
<tbody id="table">
<tr>
<th>ID</th>
<th>Local IP</th>
<th>State</th>
<th>Current Line</th>
<th>Buffered Lines</th>
<th>Total Lines</th>
<th>Hotend</th>
<th>Hotend Target</th>
<th>Bed</th>
<th>Bed Target</th>
<th>Has Control</th>
</tr>
</tbody>
</table>
<table style="width:100%">
<tbody id="table">
<tr>
<th>ID</th>
<th>Local IP</th>
<th>State</th>
<th>Current Line</th>
<th>Buffered Lines</th>
<th>Total Lines</th>
<th>Hotend</th>
<th>Hotend Target</th>
<th>Bed</th>
<th>Bed Target</th>
<th>Has Control</th>
</tr>
</tbody>
</table>
<body>
</body>
</body>
</html>

4
src/index.js Normal file
View File

@ -0,0 +1,4 @@
import Doodle3DManager from './doodle3dmanager.js';
import Doodle3DAPI from './doodle3dapi.js';
export {Doodle3DManager, Doodle3DAPI};