mirror of https://github.com/torappinfo/uweb
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
361 B
HTML
13 lines
361 B
HTML
2 years ago
|
<script src="https://fastly.jsdelivr.net/npm/@accusoft/pdf-viewer@latest/bundle.js"></script>
|
||
3 years ago
|
<div id="viewer"></div>
|
||
|
<script>
|
||
|
let url = location.search.substring(6);
|
||
|
(async () => {
|
||
|
const pdfViewer = await window.Accusoft.PdfViewerControl.create({
|
||
|
sourceDocument: url,
|
||
|
container: document.getElementById('viewer')
|
||
|
});
|
||
|
})();
|
||
|
</script>
|
||
|
|