mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-09-11 02:32:20 +02:00
* refactor(settings): add modular shell primitives * refactor(settings): wire modular shell * test(settings): exercise real coordinator ESM boundary * refactor(settings): add registry-backed settings finder * fix(settings): harden registry navigation behavior
8 lines
266 B
JavaScript
8 lines
266 B
JavaScript
// Shared DOM helpers for the Settings modules.
|
|
// Keep this module intentionally small so panel modules do not grow their own
|
|
// element-lookup conventions as Settings is split out of settings.js.
|
|
|
|
export function byId(id) {
|
|
return document.getElementById(id);
|
|
}
|