-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathscorm_test_harness.html
32 lines (29 loc) · 1.17 KB
/
scorm_test_harness.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
<!doctype html>
<html id="adapt" class="no-js" lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="adapt.css" type="text/css" rel="stylesheet"/>
<script src="libraries/js-cookie.js" type="text/javascript" language="javascript"></script>
<script src="offline_API_wrapper.js" type="text/javascript" language="javascript"></script>
<script src="libraries/modernizr.js" type="text/javascript" language="javascript"></script>
<script src="adapt/js/scriptLoader.js" type="text/javascript" language="javascript"></script>
</head>
<body>
<div id="app">
<div id="wrapper">
<!-- Adapt menu / page renders here -->
</div>
</div>
</body>
<script type="text/javascript">
Cookies.defaults = {
// uncomment this if you need the cookie to 'persist'. if left commented-out it will act as a 'session' cookie
// see https://github.com/js-cookie/js-cookie/tree/latest#expires
/* expires: 365, */
sameSite: 'strict'
}
</script>
</html>