-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.dev.html
64 lines (52 loc) · 2.67 KB
/
index.dev.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE HTML>
<!--
A2J Author 7 * Justice * justicia * 正义 * công lý * 사법 * правосудие
All Contents Copyright The Center for Computer-Assisted Legal Instruction
2012-2015
A2J Viewer Plugin
Internal Developer only
See demo/viewer/viewer.html for Public demo version.
-->
<html>
<head>
<!-- Favicon Image Support from: https://sympli.io/blog/2017/02/15/heres-everything-you-need-to-know-about-favicons-in-2017/-->
<link rel="icon" type="image/png" href="favicons/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="favicons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="favicons/favicon-96x96.png" sizes="96x96">
<!-- Favicon Image Support for Apple (and Android) -->
<link rel="apple-touch-icon" href="favicons/iPhone-120x120.png"> <!-- 120px -->
<link rel="apple-touch-icon" sizes="180x180" href="favicons/iPhone-180x180.png">
<link rel="apple-touch-icon" sizes="152x152" href="favicons/iPhone-152x152.png">
<link rel="apple-touch-icon" sizes="167x167" href="favicons/iPhone-167x167.png">
<title>A2J Viewer</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div id="viewer-app"></div>
<script> window.less = { async: true, useFileCache: true };</script>
<script>
localStorage.setItem('a2jConfig', JSON.stringify({
// path (or url) to the interview XML file
templateURL: '',
// folder containing images, templates and other assets related to the interview
fileDataURL: '',
// endpoint to load an answer file at start, used for RESUME
getDataURL: '',
// endpoint to save the answer's file and leaves the viewer (its response replaces viewer's frame)
setDataURL: '',
// (Optional) ajax endpoit to silently save the answer file periodically
autoSetDataURL: '',
// use to replace the viewer's frame on EXIT (user 'fails' interview)
exitURL: '',
// endpoint to silent log data
// E.g., https://lawhelpinteractive.org/a2j_logging
logURL: '',
// errRepURL accepts user's public submission of an error to which they can add an optional comment.
// E.g., 'https://lawhelpinteractive.org/problem_reporting_form'
errRepURL: ''
}));
</script>
<script src="node_modules/steal/steal.production.js?v=1733872401300" cache-key="v" cache-version="1733872401300" main="@caliorg/a2jviewer/app"></script>
</body>
</html>