From cabd32965b890dc1144aa044fc93fc6d5ec17adf Mon Sep 17 00:00:00 2001 From: Boof <97455552+hexahigh@users.noreply.github.com> Date: Fri, 12 May 2023 11:28:27 +0200 Subject: [PATCH] update --- other/csv-merge/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/other/csv-merge/index.js b/other/csv-merge/index.js index 03b1c72..a914d33 100644 --- a/other/csv-merge/index.js +++ b/other/csv-merge/index.js @@ -4,8 +4,7 @@ var array256 = "null" var array1 = "null" var output = "null" var linesDone = "1" -const outputArea = document.get -document.get +const outputArea = document.getElementById("outputArea").value window.onload = function loadFiles() { loadString() @@ -62,7 +61,8 @@ function mergeToCsv() { A256 = array256[linesDone]; Astring = arrayString[linesDone]; A1 = array1[linesDone]; - + output = Astring + "," + Amd5 + "," + A1 + "," + A256 + outputArea = outputArea + "\n" + output } linesDone + 1 }