forked from georgestagg/shiny-standalone-webr-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (39 loc) · 983 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
38
39
40
<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>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/app.min.js"></script>
<link href="assets/css/app.min.css" rel="stylesheet">
</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>