(event)
| 1143 | } |
| 1144 | |
| 1145 | function handlePointerMove(event) { |
| 1146 | if (!isRunning()) return; |
| 1147 | |
| 1148 | if (isUpdatingSpeed) { |
| 1149 | updateSpeedFromEvent(event); |
| 1150 | } |
| 1151 | } |
| 1152 | |
| 1153 | function handleKeydown(event) { |
| 1154 | // P |
nothing calls this directly
no test coverage detected