forked from semmel/on-screen-keyboard-detector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpubsub.html
57 lines (54 loc) · 1.39 KB
/
pubsub.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="referrer" content="no-referrer"/>
<meta name="referrer" content="never"/>
<title>pubsub</title>
<style type="text/css">
:root {
color-scheme: light dark;
}
:root, body {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: 0;
padding: 0;
height: 100%;
}
body {
font-family: sans-serif;
}
input {
width: 100%;
margin: 10px 0;
box-sizing: border-box;
}
</style>
</head>
<body>
<input type="email" name="CE" autofocus enterkeyhint="next">
<input type="number" name="DN">
<input type="time" name="ETime" >
<div class="outbox"></div>
<script src="../node_modules/es-module-shims/dist/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"@most/core": "../node_modules/@most/core/dist/index.es.js",
"@most/scheduler": "../node_modules/@most/scheduler/dist/index.es.js",
"@most/prelude": "../node_modules/@most/prelude/dist/index.es.js",
"@most/disposable": "../node_modules/@most/disposable/dist/index.es.js",
"@most/dom-event": "../node_modules/@most/dom-event/dist/index.es.js",
"@most/adapter": "../node_modules/@most/adapter/dist/index.mjs",
"ramda": "../node_modules/ramda/es/index.js"
}
}
</script>
<script type="module" src="./pubsub.js"></script>
</body>
</html>