1
0
mirror of https://github.com/quinton-ashley/java2js synced 2024-12-29 10:11:54 +01:00
java2js/demo.html
Quinton Ashley fcf49e5a8d 1.0.1
2021-09-23 01:41:44 -05:00

39 lines
823 B
HTML
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>java2js test</title>
<style>
body,
textarea {
background: #000;
color: #eee;
}
textarea {
-moz-tab-size: 2;
-o-tab-size: 2;
tab-size: 2;
}
#javaFile {
width: 47vw;
height: 90vh;
}
#javaConsole {
width: 47vw;
height: 90vh;
}
</style>
</head>
<body>
<textarea id="javaFile" spellcheck="false" autocomplete="off" autocorrect="off" autocapitalize="off"></textarea>
<textarea id="javaConsole" spellcheck="false" autocomplete="off" autocorrect="off" autocapitalize="off"></textarea>
<script type="text/javascript" src="jre.js"></script>
<script type="text/javascript" src="ide.js"></script>
<script type="text/javascript" src="transpiler.js"></script>
</body>
</html>