-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
30 lines (26 loc) · 1.11 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Braille Printer</title>
<style>
body { min-width: 800px; overflow-x: hidden; overflow-y: hidden; }
button { height: 26px; font-weight: bold; }
</style>
<!-- JavaScript and HTML must be in separate files for security. -->
<script src="popup.js"></script>
<script src="jquery.min.js"></script>
<script src="jquery.printpage.js"></script>
</head>
<body style="padding: 0; margin: 0;">
<div id="toast" style="position: absolute; top: 0; left: 160px; width: 500px; height: 26px; background-color: yellow; display: none; text-align: center; line-height: 26px;"></div>
<div style="width: 800px; overflow-x: hidden; overflow-y: auto;">
<div id="result" style="text-align: center; padding: 7px; overflow-x: hidden; overflow-y: auto;"></div>
<div style="padding: 10px; text-align: center; background-color: whiteSmoke;">
<button id="btn-speak" disabled="disabled">Speak it</button>
<button id="btn-print" disabled="disabled">Print</button>
<button id="btn-cloud-print" disabled="disabled">Cloud Print</button>
</div>
</div>
</body>
</html>