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)

graph LR cancelActiveZoom["cancelActiveZoom"] executeStep["executeStep"] executeStep -->|uses| cancelActiveZoom style cancelActiveZoom fill:#dbeafe,stroke:#2563eb,stroke-width:2px click cancelActiveZoom "a0eaa380329081e4.html" click executeStep "a26ccfb820921de2.html"
SourceType
executeStep uses