forked from camerongillette/factorio_blueprint_editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.6 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Factorio</title>
<link rel="shortcut icon" href="icons/atomic-bomb.png">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="container" class="factorio__container">
<div id="blueprint" class="factorio__blueprint-modal">
<textarea name="" id="bp" class="modal__data"></textarea>
<button onclick="copybtn(event)">copy</button>
<button onclick="closebtn(event)">close</button>
</div>
<div id="shareURI" class="factorio__shareURI-modal">
<textarea name="" id="uri" class="modal__data"></textarea>
<button onclick="copybtn(event)">copy</button>
<button onclick="closebtn(event)">close</button>
</div>
<div id="menu" class="navbar__actions navbar__inner-container">
<button onclick="savebtn()">Save Blueprint</button>
<button onclick="bpbtn()">Generate Blueprint</button>
<button onclick="rotatePreview()">Rotate (R)</button>
<button onclick="clearGrid()">Clear Grid</button>
</div>
<div id="preview" class="navbar__preview navbar__inner-container"></div>
<div id="sidebar" class="navbar__items navbar__inner-container scrollbar"></div>
<div id="grid" class="factorio__grid"></div>
</div>
<script src="js/pako.js"></script>
<script src="js/base64.js"></script>
<script src="js/script.js"></script>
</body>
</html>