Giftköder: Tiergift-Nummern raus, Erste-Hilfe-Button direkt zu Vergiftung

poison.js: nur noch Polizei 110 + Button → Erste Hilfe (Tab lebensgefahr)
erste-hilfe.js: init() akzeptiert params.tab zum direkten Tab-Sprung
SW by-v414, APP_VER 393
This commit is contained in:
rene 2026-04-26 09:04:10 +02:00
parent 5ca522780b
commit f6586c88ee
4 changed files with 10 additions and 13 deletions

View file

@ -2,10 +2,11 @@ window.Page_erste_hilfe = (() => {
let _container = null;
let _appState = null;
async function init(container, appState) {
async function init(container, appState, params = {}) {
_container = container;
_appState = appState;
_render();
if (params.tab) _activateTab(params.tab);
}
function refresh() {}