Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions src/actions/mover.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import type {
BlockSvg,
IDragger,
IDragStrategy,
Gesture,
RenderedConnection,
} from 'blockly';
import {
Expand Down Expand Up @@ -55,18 +54,6 @@ export class Mover {
*/
protected moves: Map<WorkspaceSvg, MoveInfo> = new Map();

/**
* The stashed isDragging function, which is replaced at the beginning
* of a keyboard drag and reset at the end of a keyboard drag.
*/
oldIsDragging: (() => boolean) | null = null;

/**
* The stashed getGesture function, which is replaced at the beginning
* of a keyboard drag and reset at the end of a keyboard drag.
*/
oldGetGesture: ((e: PointerEvent) => Gesture | null) | null = null;

/**
* The block's base drag strategy, which will be overridden during
* keyboard drags and reset at the end of the drag.
Expand Down
Loading