forked from documentcloud/document-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
viewer-mini-debug.html
98 lines (90 loc) · 6.44 KB
/
viewer-mini-debug.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta http-equiv="ClearType" content="true">
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<title>Document Viewer (Dev)</title>
<link href="public/stylesheets/DV/components/reset.css" media="screen" rel="stylesheet" type="text/css" />
<link href="public/stylesheets/DV/components/structure.css" media="screen" rel="stylesheet" type="text/css" />
<link href="public/stylesheets/DV/components/ui.css" media="screen" rel="stylesheet" type="text/css" />
<link href="public/stylesheets/DV/components/annotations.css" media="screen" rel="stylesheet" type="text/css" />
<link href="public/stylesheets/DV/components/pages.css" media="screen" rel="stylesheet" type="text/css" />
<link href="public/stylesheets/DV/components/ui-header.css" media="screen" rel="stylesheet" type="text/css" />
<link href="public/stylesheets/DV/components/ui-footer.css" media="screen" rel="stylesheet" type="text/css" />
<link href="public/stylesheets/DV/components/ui-menu.css" media="screen" rel="stylesheet" type="text/css" />
<link href="public/stylesheets/DV/components/ui-navigation.css" media="screen" rel="stylesheet" type="text/css" />
<link href="public/stylesheets/DV/components/ui-search.css" media="screen" rel="stylesheet" type="text/css" />
<link href="public/stylesheets/DV/components/ui-text.css" media="screen" rel="stylesheet" type="text/css" />
<link href="public/stylesheets/DV/components/ui-zoom.css" media="screen" rel="stylesheet" type="text/css" />
<link href="public/stylesheets/DV/components/view-annotations.css" media="screen" rel="stylesheet" type="text/css" />
<link href="public/stylesheets/DV/components/view-document.css" media="screen" rel="stylesheet" type="text/css" />
<link href="public/stylesheets/DV/components/view-search.css" media="screen" rel="stylesheet" type="text/css" />
<link href="public/stylesheets/DV/components/view-text.css" media="screen" rel="stylesheet" type="text/css" />
<link href="public/stylesheets/DV/components/view-thumbnails.css" media="screen" rel="stylesheet" type="text/css" />
<link href="public/stylesheets/DV/components/unsupported.css" media="screen" rel="stylesheet" type="text/css" />
<link href="public/stylesheets/DV/components/minimode.css" media="screen" rel="stylesheet" type="text/css" />
<link href="public/stylesheets/DV/themes/plain.css" media="screen" rel="stylesheet" type="text/css" />
<link href="public/stylesheets/DV/print.css" media="print" rel="stylesheet" type="text/css" />
<script src="public/javascripts/DV/vendor/jquery-1.5.1.js" type="text/javascript"></script>
<script src="public/javascripts/DV/vendor/jquery-ui-1.8.1.custom.min.js" type="text/javascript"></script>
<script src="public/javascripts/DV/vendor/underscore.js" type="text/javascript"></script>
<script src="public/javascripts/DV/vendor/jquery.acceptInput.js" type="text/javascript"></script>
<script src="public/javascripts/DV/vendor/jquery.placeholder.js" type="text/javascript"></script>
<script src="public/javascripts/DV/lib/initializer.js" type="text/javascript"></script>
<script src="public/javascripts/DV/lib/history.js" type="text/javascript"></script>
<script src="public/javascripts/DV/lib/annotation.js" type="text/javascript"></script>
<script src="public/javascripts/DV/lib/drag_reporter.js" type="text/javascript"></script>
<script src="public/javascripts/DV/lib/elements.js" type="text/javascript"></script>
<script src="public/javascripts/DV/lib/page.js" type="text/javascript"></script>
<script src="public/javascripts/DV/lib/page_set.js" type="text/javascript"></script>
<script src="public/javascripts/DV/lib/thumbnails.js" type="text/javascript"></script>
<script src="public/javascripts/DV/schema/schema.js" type="text/javascript"></script>
<script src="public/javascripts/DV/elements/elements.js" type="text/javascript"></script>
<script src="public/javascripts/DV/models/annotation.js" type="text/javascript"></script>
<script src="public/javascripts/DV/models/chapter.js" type="text/javascript"></script>
<script src="public/javascripts/DV/models/document.js" type="text/javascript"></script>
<script src="public/javascripts/DV/models/page.js" type="text/javascript"></script>
<script src="public/javascripts/DV/events/events.js" type="text/javascript"></script>
<script src="public/javascripts/DV/events/ViewAnnotation.js" type="text/javascript"></script>
<script src="public/javascripts/DV/events/ViewDocument.js" type="text/javascript"></script>
<script src="public/javascripts/DV/events/ViewSearch.js" type="text/javascript"></script>
<script src="public/javascripts/DV/events/ViewText.js" type="text/javascript"></script>
<script src="public/javascripts/DV/events/ViewThumbnails.js" type="text/javascript"></script>
<script src="public/javascripts/DV/events/history.js" type="text/javascript"></script>
<script src="public/javascripts/DV/events/navigation.js" type="text/javascript"></script>
<script src="public/javascripts/DV/helpers/helpers.js" type="text/javascript"></script>
<script src="public/javascripts/DV/helpers/annotations.js" type="text/javascript"></script>
<script src="public/javascripts/DV/helpers/construction.js" type="text/javascript"></script>
<script src="public/javascripts/DV/helpers/editor.js" type="text/javascript"></script>
<script src="public/javascripts/DV/helpers/navigation.js" type="text/javascript"></script>
<script src="public/javascripts/DV/helpers/search.js" type="text/javascript"></script>
<script src="public/javascripts/DV/states/states.js" type="text/javascript"></script>
<script src="public/javascripts/DV/controllers/document_viewer.js" type="text/javascript"></script>
<script src="public/javascripts/DV/controllers/api.js" type="text/javascript"></script>
<script src="public/assets/templates.js" type="text/javascript"></script>
</head>
<body>
<div id="document-viewer"></div>
<script type="text/javascript">
DV.load('http://www.documentcloud.org/documents/96522-torrance-statement-on-crime-map.js', {
container: '#document-viewer',
width: 499,
height: 700,
sidebar: false,
search: false
});
</script>
<br /> <br /> <br /> <br />
<div id="document-viewer-2"></div>
<script type="text/javascript">
DV.load('http://www.documentcloud.org/documents/87099-birth-certificate-long-form.js', {
container: '#document-viewer-2',
width: 350,
height: 400,
sidebar: false,
search: false
});
</script>
</body>
</html>