forked from georgestagg/shiny-standalone-webr-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 818 Bytes
/
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
<html>
<head>
<title>Standalone Shiny on webR demo</title>
<style>
body {
font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif;
}
#console {
font-size: 16px;
z-index: 1;
border-top: 2px solid black;
position: absolute;
bottom: 0;
left: 0;
right: 0;
height:20%;
overflow-y: scroll;
overflow-wrap: anywhere;
}
</style>
</head>
<body>
<div id="loading">
<h1>Please wait, webR is loading</h1>
<p>This can take a while...</p>
</div>
<div id="console">
<pre style="white-space: pre-wrap;">
<code id="out">
Loading webR...
</code>
</pre>
</div>
<script src="shiny.js"></script>
</body>
</html>