15 lines
295 B
JavaScript
15 lines
295 B
JavaScript
/* vs01 — 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);
|
|
})();
|