cancelActiveZoom function exported
Last updated: 2026-03-05T21:04:53.788Z
Metrics
LOC: 6
Complexity: 2
Params: 0
Signature
cancelActiveZoom(): : void
Summary
Cancels any active zoom effect immediately. Called when the to-be-zoomed step completes.
Source Code
export function cancelActiveZoom(): void {
if (activeCancelFn) {
activeCancelFn();
activeCancelFn = null;
}
}
No outgoing dependencies.
Impact (Incoming)
| Source | Type |
|---|---|
| executeStep | uses |