Initial push

This commit is contained in:
2026-06-05 16:30:42 -04:00
parent 208a282b0e
commit 12cc76bb62

View File

@@ -0,0 +1,14 @@
/* dsc01 — Vital Signs — v0.1.0 */
(function () {
'use strict';
function initDirectory() {
// TODO: Bootstrap tab init if needed beyond data-bs-toggle
}
function init() {
initDirectory();
}
document.addEventListener('DOMContentLoaded', init);
})();