Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
6 views2 pages

Doctype HTML

The document is an HTML template for a PDF user interface, including links to various CSS stylesheets and JavaScript files necessary for functionality. It contains div elements for the UI components, modal, and document container. The script tags at the end load essential JavaScript resources for the application to operate correctly.

Uploaded by

bienfaitngai26
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views2 pages

Doctype HTML

The document is an HTML template for a PDF user interface, including links to various CSS stylesheets and JavaScript files necessary for functionality. It contains div elements for the UI components, modal, and document container. The script tags at the end load essential JavaScript resources for the application to operate correctly.

Uploaded by

bienfaitngai26
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

doctype html>

<html>

<head>

<meta charset="utf-8">

<link rel="stylesheet" href="edge://resources/css/md_colors.css">

<link rel="stylesheet" href="edge://resources/css/text_defaults_md.css">

<link rel="stylesheet" href="index.css">

<!-- Enable error-reporting -->

<script src="pdf-error-reporting.js"></script>

</head>

<body>

<!-- the contents of ui-container are react-based PDF UI components -->

<div id="ui-container"></div>

<!-- This is container div for the currently open modal if exists -->

<div id="modal-root"></div>

<div id="sizer"></div>

<div id="document-container">

<div id="embed-border"></div>

</div>

</body>

<script src="edge://resources/js/event_tracker.js"></script>

<script src="edge://resources/js/assert.js"></script>

<script src="edge://resources/js/cr.js"></script>

<script src="edge://resources/js/cr/event_target.js"></script>

<!-- Defining loadtimedata interface. -->

<script src="edge://resources/js/load_time_data.js"></script>
<!-- Defining JobRunner construct. -->

<script src="helpers/job_runner.js"></script>

<script src="./setup_job_runners.js"></script>

<!-- Initialize job runners and initialize loadtimedata. -->

<script src="edge://resources/js/util.js"></script>

<script src="edge://resources/js/promise_resolver.js"></script>

<!-- The generated bundles from webpack. -->

<script src="dist/pdfui_component.chunk.js"></script>

<script src="dist/vendors~main.chunk.js"></script>

<script src="dist/vendors~pdfui_component.chunk.js"></script>

<script src="dist/bundle.js"></script>

<script src="../main.js" type="module"></script>

</html>

You might also like