diff --git a/public_html/assets/js/jarvis-app.js b/public_html/assets/js/jarvis-app.js index cd1c45f..9e673bb 100644 --- a/public_html/assets/js/jarvis-app.js +++ b/public_html/assets/js/jarvis-app.js @@ -982,6 +982,7 @@ async function loadWeather() { const d = await api('weather'); if (!d || !d.current) return; const c = d.current; + if (d.location) document.getElementById('weather-loc').textContent = d.location.toUpperCase(); document.getElementById('weather-temp').textContent = c.temp; document.getElementById('weather-desc').textContent = (c.desc || '').toUpperCase(); document.getElementById('weather-feels').textContent = c.feels + '°F'; diff --git a/public_html/index.html b/public_html/index.html index 3d8b1a3..8e7475b 100644 --- a/public_html/index.html +++ b/public_html/index.html @@ -84,7 +84,7 @@
-
WEATHER FORT WORTH, TX
+
WEATHER WEATHERFORD, TX