fixes and major changes

This commit is contained in:
2026-07-20 12:33:19 -05:00
parent 5d2c3dc545
commit 7369afb6bb
8 changed files with 304 additions and 77 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ const SCALE_ACTIVE = 1.06;
type ChipMap = Map<HTMLLIElement, DOMRect>;
function tokenOf(el: Element): string {
return (el.textContent || '').trim();
return (el as HTMLElement).dataset.skill || (el.textContent || '').trim();
}
function readReducedMotion(): boolean {