-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (99 loc) · 4.25 KB
/
index.html
File metadata and controls
100 lines (99 loc) · 4.25 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="dark light">
<title>Document</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.min.css"
integrity="sha512-q3eWabyZPc1XTCmF+8/LuE1ozpg5xxn7iO89yfSOd5/oKvyqLngoNGsx8jq92Y8eXJ/IRxQbEC+FGSYxtk2oiw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="./playgrounds.css" />
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
</head>
<body onload="load()">
<header>
<nav>
<i class="fab fa-github"></i> <a
href="https://github.com/keyvisions/playgrounds"
>keyvisions/playgrounds</a>
</nav>
<form class="search" method="get" action="index.html">
<input name="search" type="search"> <button
type="submit"
style="border: none; background-color: transparent; color: inherit"
>
<i
class="fas fa-fw fa-search"
></i>
</button>
</form>
</header>
<main style="display: grid; grid-template-columns: auto 1fr auto">
<aside class="left">
<h2>Parts</h2>
<ol id="Parts"><li><a href="./barcode/index.html" onclick="openPart(event)">barcode</a></li>
<li><a href="./kv-fringe/index.html" onclick="openPart(event)">kv-fringe</a></li>
<li><a href="./kv-gantt/index.html" onclick="openPart(event)">kv-gantt</a></li>
<li><a href="./kv-gauge/index.html" onclick="openPart(event)">kv-gauge</a></li>
<li><a href="./kv-pair/index.html" onclick="openPart(event)">kv-pair</a></li>
<li><a href="./kv-params/index.html" onclick="openPart(event)">kv-params</a></li>
<li><a href="./kv-pick/index.html" onclick="openPart(event)">kv-pick</a></li>
<li><a href="./kv-sign/index.html" onclick="openPart(event)">kv-sign</a></li>
<li><a href="./kv-splitter/index.html" onclick="openPart(event)">kv-splitter</a></li>
<li><a href="./kv-table/index.html" onclick="openPart(event)">kv-table</a></li>
<li><a href="./kv-tags/index.html" onclick="openPart(event)">kv-tags</a></li>
<li><a href="./kv-timeline/index.html" onclick="openPart(event)">kv-timeline</a></li>
<li><a href="./kvAutocomplete/index.html" onclick="openPart(event)">kvAutocomplete</a></li>
<li><a href="./kvCart/index.html" onclick="openPart(event)">kvCart</a></li>
<li><a href="./kvImportData/index.html" onclick="openPart(event)">kvImportData</a></li>
<li><a href="./kvJSONForm/index.html" onclick="openPart(event)">kvJSONForm</a></li>
<li><a href="./kvProductionLine/index.html" onclick="openPart(event)">kvProductionLine</a></li>
<li><a href="./kvSelect/index.html" onclick="openPart(event)">kvSelect</a></li>
<li><a href="./kvSelections/index.html" onclick="openPart(event)">kvSelections</a></li>
<li><a href="./kvTags/index.html" onclick="openPart(event)">kvTags</a></li>
<li><a href="./stw-element/index.html" onclick="openPart(event)">stw-element</a></li>
<li><a href="./wms/index.html" onclick="openPart(event)">wms</a></li></ol>
</aside>
<iframe
name="Part"
id="Part"
src="about:blank"
style="border: none; width: 100%; height: 100%; display: block; position: relative; top: 0; left: 0; right: 0; bottom: 0"
>
Part
</iframe>
<aside class="right">
<div id="README"></div>
</aside>
</main>
<footer>
<div style="padding: 0.5rem">
KeyVisions™ ©
<script>
document.write((new Date()).getFullYear());
</script> All rights reserved.
<select
name="background"
onchange="setBackground(this.value)"
style="padding: 0 0.5rem; float: right"
>
<option value="">none</option>
<option value="./media/butterfly.svg">Butterfly</option>
<option value="./media/flower.svg">Flower</option>
<option value="./media/marijuana.svg">Marijuana</option>
</select>
<i
class="far fa-fw fa-moon"
onclick="toggleColorScheme(event)"
style="padding: 0 0.5rem; float: right"
></i>
</div>
</footer>
<script src="./playgrounds.js"></script>
</body>
</html>