-
Notifications
You must be signed in to change notification settings - Fork 9
/
everything.dist.html
48 lines (48 loc) · 1.12 KB
/
everything.dist.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>NoFlo browser runtime</title>
<style>
#flowhub_debug_url.nodebug {
display: none;
}
#flowhub_debug_url.debug {
display: block;
position: fixed;
z-index: 999;
right: 36px;
top: 36px;
background-color: hsla(210, 98%, 46%, .8) !important;
border-color: hsl(210, 98%, 46%) !important;
color: white !important;
text-decoration: none;
padding: 8px;
border-radius: 8px;
cursor: pointer;
font-family: sans-serif;
}
body {
padding: 0px;
margin: 0px;
color: #ffffff;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/coffee-script/1.7.1/coffee-script.min.js"></script>
<script src="vendor/requirejs/require.js"></script>
<script>
requirejs.config({
packages: [
{
name: 'React',
location: 'vendor/react',
main: 'react.min'
}
]
});
</script>
</head>
<body>
<a id='flowhub_debug_url' target="_blank" class='nodebug'>Debug in Flowhub</a>
</body>
</html>