aboutsummaryrefslogtreecommitdiffstats
path: root/static/block_weather.js
diff options
context:
space:
mode:
authorMitsuo Tokumori <[email protected]>2025-03-08 16:03:30 +0900
committerMitsuo Tokumori <[email protected]>2025-03-08 16:03:30 +0900
commit51163b167cce01af6101438e5e61145ad798f213 (patch)
tree9c8e75266cedfb205db175b0b2bc41b49df75cea /static/block_weather.js
parentd9af103b9a8aed86d6ac834f1240edfb2173ffa0 (diff)
downloadmasu-51163b167cce01af6101438e5e61145ad798f213.tar.gz
masu-51163b167cce01af6101438e5e61145ad798f213.tar.bz2
masu-51163b167cce01af6101438e5e61145ad798f213.zip
Restructure python code to be modular
The python code is now a package named app. app/models: db models app/routes: flask blueprints app/static: css, js app/templates: jinja html templates
Diffstat (limited to 'static/block_weather.js')
-rw-r--r--static/block_weather.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/static/block_weather.js b/static/block_weather.js
deleted file mode 100644
index 4ae6d2d..0000000
--- a/static/block_weather.js
+++ /dev/null
@@ -1,14 +0,0 @@
-export function updateWeather() {
- const city = document.getElementById("city").value;
- fetch(`/weather?city=${encodeURIComponent(city)}`)
- .then(res => res.json())
- .then(data => {
- if (!data) {
- document.getElementById("weather-summary").innerText = `Error, "${city}" city not found`;
- return
- }
- document.getElementById("weather-summary").innerText = data.summary;
- document.getElementById("weather-icon").src = data.icon_url;
- });
-}
-