diff --git a/weather-app/app.js b/weather-app/app.js index 17cf49e..44eed1b 100644 --- a/weather-app/app.js +++ b/weather-app/app.js @@ -2,6 +2,7 @@ const API_KEY = `3265874a2c77ae4a04bb96236a642d2f` const form = document.querySelector("form") const search = document.querySelector("#search") const weather = document.querySelector("#weather") + // const API = `https://api.openweathermap.org/data/2.5/weather? // q=${city}&appid=${API_KEY}&units=metric` // const IMG_URL = `https: //openweathermap.org/img/wn/${data.weather[0].icon}@2x.png` @@ -35,4 +36,4 @@ form.addEventListener( getWeather(search.value) event.preventDefault(); } -) \ No newline at end of file +)