-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.html
45 lines (42 loc) · 1.41 KB
/
content.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>PCAGO</title>
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css"/>
<link rel="stylesheet" href="css/content.css"/>
</head>
<body>
<div id="loading-ui" class="parent">
<div>
<img src="img/logo.svg" class="logo"/>
<div>
<div>
<i class="fa fa-circle-o-notch fa-spin" aria-hidden="true"></i>
<span id="progress">Please wait ...</span>
</div>
<div id="status" class="status-text">Waiting for R</div>
</div>
</div>
</div>
<div id="error-ui" class="parent">
<div>
<img src="img/logo.svg" class="logo"/>
<div>
<div>
<i class="fa fa-exclamation-triangle" aria-hidden="true"></i>
<span >PCAGO seems to have crashed!</span>
</div>
<div class="explanation-text">Please provide the error log below if you create an issue in the <a target="_blank" href="https://gitlab.com/rumangerst/pcago/issues">issue tracker</a>. </div>
<br/>
<textarea id="error-log" readonly ></textarea>
</div>
</div>
</div>
<!-- Webview that renders PCAGO. Important! Node collides with jQuery from Shiny, so we have to use a webview -->
<webview id="pcago_webview" src="loading.html"></webview>
<script>
require('./renderer.js')
</script>
</body>
</html>