Add landing page for kjol, documentation

This commit is contained in:
2026-07-13 16:51:21 -04:00
parent 5230bd6702
commit fec8ef4a3e
54 changed files with 3529 additions and 547 deletions

View File

@@ -17,9 +17,18 @@ const (
EVENT_MOUSEENTER = "mouseenter"
EVENT_MOUSELEAVE = "mouseleave"
EVENT_CONTEXTMENU = "contextmenu"
EVENT_SCROLL = "scroll"
EVENT_RESIZE = "resize"
EVENT_WHEEL = "wheel"
// Pointer events unify mouse, touch and pen behind one set of handlers that all
// carry clientX/clientY. A component that wants to be drawn on — the signature pad —
// needs exactly one code path, not a mouse one and a touch one that drift apart.
EVENT_POINTERDOWN = "pointerdown"
EVENT_POINTERMOVE = "pointermove"
EVENT_POINTERUP = "pointerup"
EVENT_POINTERCANCEL = "pointercancel"
EVENT_SCROLL = "scroll"
EVENT_RESIZE = "resize"
EVENT_WHEEL = "wheel"
// focusin/focusout BUBBLE; focus/blur do not. Anything that needs to know a
// subtree gained focus (a tooltip staying open while a child is focused) must