iwa-panda2

Manage Weather Data by International Weather Agency (Version 2)
Log | Files | Refs | README

commit a897904d6a97a4a5f1f59e0b200b5636968488aa
parent 7b5cfca4b85c543189c6de7ea9511be61c315acd
Author: Johs <[email protected]>
Date:   Mon, 12 Jun 2023 14:50:02 +0200

better tables

Diffstat:
Mjs/panda.js | 8+-------
1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/js/panda.js b/js/panda.js @@ -10,12 +10,6 @@ fetch(`http://localhost:8080/api/${token}`) windchills.sort(jsonSorter('windchill')); let slicedArray = windchills.slice(0, 5); - // let weatherList = document.getElementById('weather-list'); - // slicedArray.forEach(item => { - // let listItem = document.createElement('li'); - // listItem.textContent = item['windchill'] + " degrees Celsius, Location: " + item['location']; - // weatherList.appendChild(listItem); - // }) let weatherlist = document.querySelector('.table'); for (i=0; i<5; i++) { let newRow = weatherlist.insertRow() @@ -24,7 +18,7 @@ fetch(`http://localhost:8080/api/${token}`) newCellRank.appendChild(newTextRank); let newCellZoo = newRow.insertCell(); - let newTextZoo = document.createTextNode(slicedArray[0].location); + let newTextZoo = document.createTextNode(slicedArray[i].location); newCellZoo.appendChild(newTextZoo); let newCellChill = newRow.insertCell();