mirror of
https://github.com/quinton-ashley/java2js
synced 2024-12-29 10:11:54 +01:00
38 lines
760 B
HTML
Executable File
38 lines
760 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>
|