mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-08 01:13:27 +01:00
32 lines
866 B
HTML
32 lines
866 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="filemanager.js"></script>
|
|
|
|
<script src="../lib/jquery-2.1.0.min.js"></script>
|
|
|
|
|
|
</head>
|
|
<body onload="updatelistbox();">
|
|
<a id="downloader" style="display: none;" ></a>
|
|
<div>
|
|
<button onclick="deleteItem()">Delete</button>
|
|
<button onclick="openSelectedItem()">Open</button>
|
|
<button onclick="ExportToLocalFile()">Export All Data</button>
|
|
<input type="file" id="file-input" />
|
|
Show Sketches<input type="checkbox" id="showsketches" onclick='showsketches(this);'><br>
|
|
<select id = 'filelist' size="50"></select>
|
|
</div>
|
|
|
|
|
|
</body>
|
|
</html>
|