2026-02-16 11:24:23 +01:00

16 lines
457 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// static/js/config.js Konfiguration & globale Daten
let config = {};
let globalSounds = [];
function initConfig() {
// Diese Werte werden in control.html per Jinja gesetzt
config = window.mkConfig || {};
globalSounds = window.mkGlobalSounds || [];
console.log("config.js → Config geladen:", config);
console.log("config.js → Globale Sounds:", globalSounds);
}
// Export (für andere Module)
window.initConfig = initConfig;