feature: reactions

This commit is contained in:
Andy Burke 2025-10-14 22:20:54 -07:00
parent 6500d9a9be
commit b8467ec870
16 changed files with 2603 additions and 383 deletions

View file

@ -32,6 +32,10 @@ function smarten_forms() {
for (const [key, value] of form_data.entries()) {
const input = form.querySelector(`[name="${key}"]`);
if (input.dataset.skip) {
continue;
}
if (input.type === "file") {
if (input.dataset["smartformsSaveToHome"]) {
form.uploaded = [];