-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 925 Bytes
/
Copy pathindex.html
File metadata and controls
33 lines (30 loc) · 925 Bytes
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
<!--This is the HTML file that gets served to the browser. It contains text-->
<!--that says "Loading..." that will disappear as soon as `bundle.js` has been-->
<!--downloaded and `lore.summon()` has finished setting up your application.-->
<!--It also contains a DOM element to hang dialogs from so they don't conflict-->
<!--with any CSS or JavaScript behaviors in the application (styling overrides-->
<!--or event bubbling cancellation).-->
<html>
<head>
<title>LoreJS Search Real Time</title>
<style>
.loading-text {
text-align: center;
line-height: 100vh;
font-size: 32px;
margin: 0;
font-weight: bold;
color: rgba(0,0,0,.54);
}
</style>
</head>
<body>
<div id="root">
<h1 class="loading-text">
Loading...
</h1>
</div>
<div id="dialog"></div>
<script src="/dist/bundle.js"></script>
</body>
</html>