diff --git a/apps/umpire/interface.html b/apps/umpire/interface.html index 5e690afdf..45d010063 100644 --- a/apps/umpire/interface.html +++ b/apps/umpire/interface.html @@ -35,6 +35,7 @@ function getData() { Event Metadata Steps + Heart Rate `+data.trim().split("\n").map(l=>{ l = l.split(","); return ` @@ -44,6 +45,7 @@ function getData() { ${l[3]} ${l[4]} ${l[5]} + ${l[6]} ` }).join("\n")+""; }); @@ -51,6 +53,7 @@ function getData() { // You can call a utility function to save the data document.getElementById("btnSave").addEventListener("click", function() { + // TODO column headings in output Util.saveCSV("matchdata", csvData); }); // Or you can also delete the file