1
0
mirror of https://github.com/quinton-ashley/java2js synced 2024-12-29 10:11:54 +01:00
java2js/demo.html
Quinton Ashley c3914fb6c0 1.0.6
2021-10-31 14:16:44 -05:00

39 lines
761 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="jdk.js"></script>
<script type="text/javascript" src="ide.js"></script>
</body>
</html>