-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocal.html
More file actions
32 lines (32 loc) · 771 Bytes
/
local.html
File metadata and controls
32 lines (32 loc) · 771 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>CheerpJ test</title>
<script src="https://cjrtnc.leaningtech.com/4.2/loader.js"></script>
</head>
<body>
<script>
cheerpjInit({
// javaProperties: ["java.awt.headless=false"]
clipboardMode: "system"
}).then(() => {
(async () => {
cheerpjCreateDisplay(1000, 1000);
const exitCode = await cheerpjRunMain(
"impactVL.Cell",
/*
"lircom.MainWindow",
*/
"/app/target/Impact.jar:/app/target/lircom-3.jar:/app/src/main/java/jackson-core-2.17.1.jar:/app/src/main/java/jackson-databind-2.17.1.jar",
/*
"lircom.Chat",
"john",
*/
);
console.log(`Program exited with code ${exitCode}`);
})();
});
</script>
</body>
</html>