mirror of
https://github.com/Doodle3D/doodle3d-client.git
synced 2024-11-13 06:27:55 +01:00
22 lines
463 B
HTML
22 lines
463 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Doodle3D</title>
|
||
|
<link href="css/style.css" rel="stylesheet" media="screen">
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
Actions:
|
||
|
<button onclick="selectAll()">Select all</button>
|
||
|
<button onclick="deselectAll()">Deselect all</button>
|
||
|
<button onclick="deleteSelectedSketches()">Delete</button>
|
||
|
<hr>
|
||
|
<form>
|
||
|
<div id="svgContainer"></div>
|
||
|
</form>
|
||
|
|
||
|
<script src="../js/libs/jquery-1-9-1.min.js"></script>
|
||
|
<script src="js/main.js"></script>
|
||
|
|
||
|
</body>
|
||
|
</html>
|