-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelement.html
More file actions
43 lines (38 loc) · 1.34 KB
/
Copy pathelement.html
File metadata and controls
43 lines (38 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<!--suppress ALL -->
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Element</title>
<link rel="stylesheet" href="css/default.css">
<link rel="stylesheet" href="css/sizes.css">
<script type="text/javascript" src="js/main.js"></script>
</head>
<body>
<!-- preview of the cupboard, the elements with the class "element" can be edited -->
<div id="elements">
<input type="submit" id="edit_elements" value="Schrank bearbeiten">
<input type="file" id="loadfile" name="file"><input type="submit" onclick="loadFile();" value="Projekt laden"><input type="submit" onclick="saveFile();" value="Projekt speichern">
</div>
<div class="workbench" id="workbench">
<!--<div class="element_add" id="element_left">
<p class="element_info"> </p>
</div>-->
<div class="element_add" id="element_right">
<p class="element_info pseudo_element"> + </p>
</div>
</div>
<!--<br>-->
<!-- in this box, settings of items in a specific element can be edited -->
<div class="datapicker" id="datapicker"></div>
<!-- box where new items can be chosen -->
<div class="additem" id="additem"></div>
<!--name of template: "template"+domNode.className-->
<template id="templateElement"> <!--defines how a Element is constructed. -->
<div class="element">
Tesziuziuzitiuz
</div>
</template>
<script>init();</script>
</body>
</html>