forked from neodynamic/JSPrintManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (108 loc) · 3.69 KB
/
index.html
File metadata and controls
122 lines (108 loc) · 3.69 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html>
<head>
<title>JSPrintManager - Print RAW Commands & Known File Formats from Javascript</title>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<meta charset="utf-8" />
<style>
table,
textarea {
width: 100%;
height: 200px;
padding: 3px;
}
a {
cursor: pointer;
}
.githubIcon {
margin-right: 10px;
color: #fff;
font-size: 32px;
}
.jspmStatus {
color: #fff;
margin-left: 10px;
}
.round {
display: inline-block;
height: 40px;
width: 40px;
line-height: 40px;
-moz-border-radius: 20px;
border-radius: 20px;
background-color: #cd2122;
color: #fff;
text-align: center;
}
.content {
padding-top: 80px;
padding-bottom: 20px;
}
.fileFormats {
background-color: #ececec;
font-weight: bold;
color: #666;
}
.topMost {
z-index: 1080;
}
.white {
color: #fff;
}
</style>
</head>
<body>
<div id="root"></div>
<file-formats-modal id="files-requeriments"></file-formats-modal>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bluebird/3.3.5/bluebird.min.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<!--JSPrintManager scripts-->
<script src="scripts/JSPrintManager.js"></script>
<script src="scripts/zip.js"></script>
<script src="scripts/zip-ext.js"></script>
<script src="scripts/deflate.js"></script>
<!--end JSPrintManager scripts-->
<script src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/babel-standalone@6.15.0/babel.min.js"></script>
<script type="text/babel" src="components/JSPMStatus.js">
</script>
<script type="text/babel" src="components/DemoStartPage.js">
</script>
<script type="text/babel" src="components/InstallJSPMClientApp.js">
</script>
<script type="text/babel" src="components/WebsiteBlackListed.js">
</script>
<script type="text/babel" src="components/Printers.js">
</script>
<script type="text/babel" src="components/PrintJobForRawCommands.js">
</script>
<script type="text/babel" src="components/PrintJobForFiles.js">
</script>
<script type="text/babel" src="components/PrintJob.js">
</script>
<script type="text/babel" src="components/PrintingMultiplePrintJobsSample.js">
</script>
<script type="text/babel" src="components/PrintingRawCommandsSample.js">
</script>
<script type="text/babel" src="components/PrintingFilesSample.js">
</script>
<script type="text/babel" src="components/PrintingPDFSample.js">
</script>
<script type="text/babel" src="components/PrintingTXTSample.js">
</script>
<script type="text/babel" src="components/PrintersInfoSample.js">
</script>
<script type="text/babel" src="components/App.js">
</script>
</body>
</html>