You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scripts/dispatcher.js
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -130,7 +130,8 @@ window.onload = function geoLocator() {
130
130
});
131
131
132
132
weatherBallon(cookie_lat,cookie_lng);// pass coords to get weather info
133
-
weatherBallon2(cookie_lat,cookie_lng);// pass coords to get UV index
133
+
// FIX: API is now paid
134
+
// weatherBallon2(cookie_lat, cookie_lng); // pass coords to get UV index
134
135
airMask(cookie_lat,cookie_lng);// pass coords to get air quality info
135
136
airCrystalBall(cookie_lat,cookie_lng)// pass coords to get air quality forecast
136
137
// showPollen(cookie_location_voivodeship); // pass voivodeship to get allergy information? // FIX: doesn't work as of late 2024, the website is down so we need to take the data from a different API
@@ -256,7 +257,8 @@ window.onload = function geoLocator() {
256
257
// alert(liq_location); // debug
257
258
258
259
weatherBallon(cookie_lat,cookie_lng);// pass coords to get weather info
259
-
weatherBallon2(cookie_lat,cookie_lng);// pass coords to get UV index
260
+
// FIX: API is now paid
261
+
// weatherBallon2(cookie_lat, cookie_lng); // pass coords to get UV index
260
262
airMask(cookie_lat,cookie_lng);// pass coords to get air quality info
261
263
airCrystalBall(cookie_lat,cookie_lng)// pass coords to get air quality forecast
262
264
// showPollen(cookie_location_voivodeship); // pass voivodeship to get allergy information // FIX: doesn't work as of late 2024, the website is down so we need to take the data from a different API
@@ -300,7 +302,8 @@ window.onload = function geoLocator() {
300
302
}
301
303
302
304
weatherBallon(cookie_lat,cookie_lng);// pass coords to get weather info
303
-
weatherBallon2(cookie_lat,cookie_lng);// pass coords to get UV index
305
+
// FIX: API is now paid
306
+
// weatherBallon2(cookie_lat, cookie_lng); // pass coords to get UV index
304
307
airMask(cookie_lat,cookie_lng);// pass coords to get air quality info
305
308
airCrystalBall(cookie_lat,cookie_lng)// pass coords to get air quality forecast
306
309
// showPollen(cookie_location_voivodeship); // pass voivodeship to get allergy information // FIX: doesn't work as of late 2024, the website is down so we need to take the data from a different API
@@ -432,7 +435,8 @@ function manualFinder() { // globe icon
weatherBallon(cookie_lat,cookie_lng);// pass coords to get weather info
435
-
weatherBallon2(cookie_lat,cookie_lng);// pass coords to get UV index
438
+
// FIX: API is now paid
439
+
// weatherBallon2(cookie_lat, cookie_lng); // pass coords to get UV index
436
440
airMask(cookie_lat,cookie_lng);// pass coords to get air quality info
437
441
airCrystalBall(cookie_lat,cookie_lng)// pass coords to get air quality forecast
438
442
// showPollen(cookie_location_voivodeship); // pass voivodeship to get allergy information // FIX: doesn't work as of late 2024, the website is down so we need to take the data from a different API
0 commit comments