about summary refs log tree commit diff
path: root/MatrixRoomUtils.Web/wwwroot/index.html
blob: 028e56ba8f42ddc2e33b5881e77d16d28d83b4a6 (plain) (blame)
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
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8"/>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
    <title>MatrixRoomUtils.Web</title>
    <base href="/"/>
    <link href="css/bootstrap/bootstrap.min.css" rel="stylesheet"/>
    <link href="css/app.css" rel="stylesheet"/>
    <link rel="icon" type="image/png" href="favicon.png"/>
    <link href="MatrixRoomUtils.Web.styles.css" rel="stylesheet"/>
</head>

<body>
<div id="app">
    <svg class="loading-progress">
        <circle r="40%" cx="50%" cy="50%"/>
        <circle r="40%" cx="50%" cy="50%"/>
    </svg>
    <div class="loading-progress-text"></div>
</div>

<div id="blazor-error-ui">
    An unhandled error has occurred.
    <a href="" class="reload">Reload</a>
    <a class="dismiss">🗙</a>
</div>
<script>
    function BlazorFocusElement(element) {
        if (element == null) return;
        if (element instanceof HTMLElement) {
            console.log(element);
            element.focus();
        } else {
            console.log("Element is not an HTMLElement", element);
        }
    }
</script>
<script src="_framework/blazor.webassembly.js"></script>
</body>

</html>