-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.html
41 lines (41 loc) · 1.32 KB
/
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
41
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1'>
<meta name="language" content="en">
<title>ShiftEdit Nxt</title>
<link href="https://use.fontawesome.com/releases/v5.0.8/css/all.css" rel="stylesheet">
<link href="//shiftedit.s3.amazonaws.com/css/Glyphter.css" rel="stylesheet">
<link href="css/app.css" rel="stylesheet">
<script src="https://ssh.shiftedit.net/socket.io/socket.io.js"></script>
<script src="https://apis.google.com/js/client.js" defer></script>
<script src="//cloud.tinymce.com/dev/tinymce.min.js" defer></script>
<script src="//shiftedit.s3.amazonaws.com/js/require.js"></script>
<script>
requirejs.config({
baseUrl: ''
});
require(['app/app']);
</script>
</head>
<body>
<div class="splash">
<div class="progress">
<h1>ShiftEdit</h1>
<progress class="progressbar"></progress>
<p><span class="status">loading..</span></p>
</div>
<div class="slow" style="display: none;">
<a href="/support" target="_blank">Taking a long time?</a>
</div>
</div>
<script>
setTimeout(function() {
if (document.getElementsByClassName('slow').length) {
document.getElementsByClassName('slow')[0].style.display = "block";
}
}, 20000);
</script>
</body>
</html>