c743c0d6a7
Updating insets is no longer necessary because the layout reserves the space for the top app bar and frees it up in full-screen mode so the WebView can fill the entire screen.
15 lines
404 B
HTML
15 lines
404 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, user-scalable=no" />
|
|
<title>PDF</title>
|
|
<link rel="stylesheet" href="viewer.css" />
|
|
<script src="pdf.js"></script>
|
|
</head>
|
|
<body>
|
|
<canvas id="content"></canvas>
|
|
<div id="text" class="textLayer"></div>
|
|
<script src="viewer.js"></script>
|
|
</body>
|
|
</html>
|