diff --git a/hubzilla/addon/scn01/view/js/scn01.js b/hubzilla/addon/scn01/view/js/scn01.js new file mode 100644 index 0000000..011ce0a --- /dev/null +++ b/hubzilla/addon/scn01/view/js/scn01.js @@ -0,0 +1,14 @@ +/* scn01 — 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); +})();