-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·23 lines (23 loc) · 1.02 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
<html>
<head>
<title>Minimal pdf.js text-selection demo</title>
<link href="css/minimal.css" rel="stylesheet" media="screen" />
<link href="css/marks.css" rel="stylesheet" media="screen" />
<link href="css/pinpoints.css" rel="stylesheet" media="screen" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script src="js/pdfmark.js" type="text/javascript"></script>
<script src="js/pdf.js" type="text/javascript"></script>
<script src="js/textlayerbuilder.js" type="text/javascript"></script>
<script src="js/minimal.js" type="text/javascript"></script>
<script src="js/utils.js" type="text/javascript"></script>
</head>
<body>
<div class="content">
<input id="createPinpoint" type="button" value="Create Note" onclick="createMark();" />
<div id="pdfContainer" class = "pdf-content">
</div>
</div>
<div id="pinpointContainer">
</div>
</body>
</html>