Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
html2pdf
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Lukas Niegsch
html2pdf
Commits
64e6dd7c
Commit
64e6dd7c
authored
Jun 11, 2022
by
lukas.niegsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added infrastructure for application
parent
f9216475
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
1 deletion
+16
-1
chromium.js
chromium.js
+0
-0
connection.js
connection.js
+6
-0
index.html
index.html
+10
-1
No files found.
chromium.js
0 → 100644
View file @
64e6dd7c
connection.js
0 → 100644
View file @
64e6dd7c
function
test
()
{
return
"
test
"
}
index.html
View file @
64e6dd7c
...
...
@@ -4,6 +4,15 @@
<title>
HTML to PDF
</title>
</head>
<body>
<p>
Hello, World!
</p>
<script
src=
"connection.js"
></script>
<script
src=
"chromium.js"
></script>
<script>
function
mainloop
()
{
console
.
log
(
"
Hello, World
"
+
test
())
setTimeout
(
mainloop
,
5
/* seconds */
*
1000
)
}
mainloop
()
</script>
</body>
</html>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment