-
Notifications
You must be signed in to change notification settings - Fork 94
/
index.html
43 lines (43 loc) · 1.52 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
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="FedRAMP Validations" />
<script src="SaxonJS2.rt.js" />
<script>
const docElem = window.document.documentElement,
loadingClass = 'usa-js-loading';
function addLoadingClass() {
docElem.className += ` ${loadingClass}`;
}
function revertClass() {
docElem.className = docElem.className.replace(loadingClass, '');
}
if ('querySelector' in window.document && 'addEventListener' in window) {
addLoadingClass();
const e = setTimeout(revertClass, 8e3);
let s = 100;
const n = () => {
setTimeout(() => {
(s += 1),
'undefined' != typeof uswdsPresent
? (clearTimeout(e), setTimeout(revertClass, 100))
: s > 0 && n();
}, 100);
};
n();
}
</script>
<title>FedRAMP Validations</title>
<!-- We participate in the US government's analytics program. See the data at analytics.usa.gov. -->
<script async type="text/javascript" src="https://dap.digitalgov.gov/Universal-Federated-Analytics-Min.js?agency=GSA"
id="_fed_an_ua_tag"></script>
</head>
<body>
<div id="root"></div>
<noscript>You need to enable JavaScript to run this app.</noscript>
<script type="module" src="/src/index.ts"></script>
</body>
</html>