mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-09-15 20:52:21 +02:00
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);
|
|
}
|