mirror of
https://github.com/hexahigh/games.git
synced 2025-12-11 20:15:38 +01:00
fix
This commit is contained in:
parent
11bfd0c4a6
commit
14f44a929b
@ -5,7 +5,7 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Document</title>
|
||||
<script src="index.js"></script>
|
||||
<script src="index.js" defer></script>
|
||||
</head>
|
||||
<body onload="loadFiles()">
|
||||
<textarea id="outputArea"></textarea>
|
||||
|
||||
@ -4,7 +4,7 @@ var array256 = "null"
|
||||
var array1 = "null"
|
||||
var output = "null"
|
||||
var linesDone = "1"
|
||||
const outputArea = document.getElementById("outputArea").value
|
||||
const outputArea = document.getElementById("outputArea")
|
||||
|
||||
function loadFiles() {
|
||||
loadString()
|
||||
@ -62,7 +62,7 @@ function mergeToCsv() {
|
||||
Astring = arrayString[linesDone];
|
||||
A1 = array1[linesDone];
|
||||
output = Astring + "," + Amd5 + "," + A1 + "," + A256
|
||||
outputArea = outputArea + "\n" + output
|
||||
outputArea.value = outputArea.value + "\n" + output
|
||||
}
|
||||
linesDone + 1
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user