mirror of
https://github.com/xibyte/jsketcher
synced 2026-02-14 03:16:22 +01:00
28 lines
648 B
HTML
28 lines
648 B
HTML
<html>
|
|
<head>
|
|
<title>TCAD</title>
|
|
<style>
|
|
body {
|
|
font-family: Monospace;
|
|
margin: 0px;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|
|
<link rel="stylesheet" href="css/toolkit.css?modeler">
|
|
<link rel="stylesheet" href="lib/font-awesome/css/font-awesome.min.css?modeler">
|
|
<script src="app/filemanager.js"></script>
|
|
|
|
<script src="lib/jquery-2.1.0.min.js"></script>
|
|
|
|
|
|
</head>
|
|
<body onload="updatelistbox();">
|
|
<div>
|
|
<button onclick="deleteItem()">Delete</button>
|
|
Show Sketches<input type="checkbox" id="showsketches" onclick='showsketches(this);'><br>
|
|
<select id = 'filelist' size="50"> </select>
|
|
</div>
|
|
|
|
|
|
</body>
|
|
</html>
|