Commit 64e6dd7c authored by lukas.niegsch's avatar lukas.niegsch

added infrastructure for application

parent f9216475
function test()
{
return "test"
}
...@@ -4,6 +4,15 @@ ...@@ -4,6 +4,15 @@
<title>HTML to PDF</title> <title>HTML to PDF</title>
</head> </head>
<body> <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> </body>
</html> </html>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment