mirror of
https://github.com/leaningtech/cheerpj-meta.git
synced 2025-03-15 01:54:48 +01:00
20 lines
465 B
HTML
20 lines
465 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Browser</title>
|
|
<script src="https://cjrtnc.leaningtech.com/3.1/cj3loader.js"></script>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
(async function () {
|
|
await cheerpjInit({
|
|
tailscaleAuthKey:"PasteYourKeyHere",
|
|
|
|
});
|
|
cheerpjCreateDisplay(800, 600);
|
|
await cheerpjRunJar("/app/SwingHTMLBrowser.jar");
|
|
})();
|
|
</script>
|
|
</body>
|
|
</html> |