add hazards before custom scroll options close #149

This commit is contained in:
Matt Walsh
2025-10-17 00:35:26 +00:00
parent 9a5efe9d48
commit f4a1a3a1d8
2 changed files with 6 additions and 2 deletions

View File

@@ -298,4 +298,5 @@ export {
hide, hide,
screenCount, screenCount,
atDefault, atDefault,
hazards,
}; };

View File

@@ -1,5 +1,5 @@
import Setting from './utils/setting.mjs'; import Setting from './utils/setting.mjs';
import { reset as resetScroll, addScreen as addScroll } from './currentweatherscroll.mjs'; import { reset as resetScroll, addScreen as addScroll, hazards } from './currentweatherscroll.mjs';
import { json } from './utils/fetch.mjs'; import { json } from './utils/fetch.mjs';
let firstRun = true; let firstRun = true;
@@ -42,8 +42,9 @@ const parseFeed = (textInput) => {
return; return;
} }
// add single text scroll // add single text scroll after hazards if present
resetScroll(); resetScroll();
addScroll(hazards);
addScroll( addScroll(
() => ( () => (
{ {
@@ -81,6 +82,8 @@ const getFeed = async (url) => {
// reset the scroll, then add the screens // reset the scroll, then add the screens
resetScroll(); resetScroll();
// add the hazards scroll first
addScroll(hazards);
titles.forEach((title) => { titles.forEach((title) => {
// data is provided to the screen handler, so we return a function // data is provided to the screen handler, so we return a function
addScroll( addScroll(