Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamBenes3 committed Dec 1, 2023
1 parent 197bac5 commit 5e0e02d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions views/index.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,7 @@
const latitude = parseFloat(data.latitude);
const longitude = parseFloat(data.longitude);
const altitude = parseFloat(data.altitude);
const tmp = parseFloat(data.tmp);
var infoTable = document.createElement('table');
displayTableRow(infoTable, 'Converted 1:', convertedNumbers[0]);
Expand All @@ -425,6 +426,7 @@
displayTableRow(infoTable, 'Latitude:', latitude);
displayTableRow(infoTable, 'Longitude:', longitude);
displayTableRow(infoTable, 'Altitude:', altitude);
displayTableRow(infoTable, 'Tmo:', tmp);
carDataPanel.textContent = '';
carDataPanel.appendChild(infoTable);
}
Expand Down

0 comments on commit 5e0e02d

Please sign in to comment.