forked from nytimes/document-viewer
-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathviewer.html
35 lines (29 loc) · 825 Bytes
/
viewer.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Document Viewer (Debug)</title>
<link href="dist/viewer-datauri.css" media="screen" rel="stylesheet" type="text/css">
<link href="public/stylesheets/DV/print.css" media="print" rel="stylesheet" type="text/css">
<script src="dist/viewer.js" type="text/javascript"></script>
<script src="dist/templates.js" type="text/javascript"></script>
<style>
body {
margin: 0;
}
</style>
</head>
<body>
<div id="document-viewer"></div>
<script type="text/javascript">
window.currentDocument = DV.load(
'https://www.documentcloud.org/documents/282753-lefler-thesis.js',
{
container: '#document-viewer',
sidebar: false
}
);
</script>
</body>
</html>