Fix: entrance-animation delay no-op (coerce bare number to valid CSS time) #24
Reference in New Issue
Block a user
Delete Branch "fix-animation-delay"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
data-animation-delay is stored as a plain seconds string ("2"); the reveal script assigned it raw to el.style.animationDelay = invalid CSS = no-op. Suffix s onto bare numbers ("2"->"2s"), leaving "2s"/"200ms" alone. Byte-identical change in the backend generateCompiledHTML reveal script. 895 tests.
🤖 Generated with Claude Code