aboutsummaryrefslogtreecommitdiffstats
path: root/main.mjs
diff options
context:
space:
mode:
authorBrian Cully <bjc@spork.org>2025-07-16 18:48:48 -0400
committerBrian Cully <bjc@spork.org>2025-07-16 18:48:48 -0400
commite1a9e10902de4d927f4c2c87b6c27e6303fa1ead (patch)
tree516d92bd5bf204308919d57698277b7bb9e08078 /main.mjs
parent5da918119bb2e352f10060a36d9c7e580fa8695e (diff)
downloadpnit-e1a9e10902de4d927f4c2c87b6c27e6303fa1ead.tar.gz
pnit-e1a9e10902de4d927f4c2c87b6c27e6303fa1ead.zip
add js version rendering. still needs download
Diffstat (limited to 'main.mjs')
-rw-r--r--main.mjs7
1 files changed, 7 insertions, 0 deletions
diff --git a/main.mjs b/main.mjs
new file mode 100644
index 0000000..8bebffd
--- /dev/null
+++ b/main.mjs
@@ -0,0 +1,7 @@
+import PNITForm from './pnit-form.mjs';
+
+function init() {
+ PNITForm.register();
+}
+
+document.addEventListener('DOMContentLoaded', init);