Merge branch 'main' into drjkl/lowered-expectations

This commit is contained in:
Alexander Brown
2026-01-12 12:20:48 -08:00
committed by GitHub
33 changed files with 19675 additions and 147 deletions

View File

@@ -24,5 +24,13 @@ onMounted(() => {
})
</script>
<template>
<div ref="domEl" />
<div
ref="domEl"
@pointerdown.stop
@pointermove.stop
@pointerup.stop
@mousedown.stop
@mousemove.stop
@mouseup.stop
/>
</template>

View File

@@ -104,9 +104,9 @@ function handleMove(e: PointerEvent) {
<canvas
ref="canvasEl"
class="absolute w-full cursor-crosshair"
@pointerdown="handleDown"
@pointerup="handleUp"
@pointermove="handleMove"
@pointerdown.stop="handleDown"
@pointerup.stop="handleUp"
@pointermove.stop="handleMove"
/>
</div>
</template>