전략편집기 수정
This commit is contained in:
@@ -72,6 +72,14 @@ export function projectScreenToFlowPosition(
|
||||
);
|
||||
}
|
||||
|
||||
/** 목록 방식 편집기 위인지 */
|
||||
export function isOverListEditor(clientX: number, clientY: number): boolean {
|
||||
for (const el of elementsUnderDragPoint(clientX, clientY)) {
|
||||
if (el.closest('.se-list-editor')) return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/** 팔레트 드롭 — 전략 빌더 캔버스 위인지 */
|
||||
export function isOverStrategyBuilder(clientX: number, clientY: number): boolean {
|
||||
for (const el of elementsUnderDragPoint(clientX, clientY)) {
|
||||
|
||||
Reference in New Issue
Block a user