diff options
author | bobzel <zzzman@gmail.com> | 2024-09-18 20:46:38 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-09-18 20:46:38 -0400 |
commit | d95730d904612640184ca6fdc00864b0c81b0c0c (patch) | |
tree | 29176e9a4ea75fca8a146e8a49774fd1b1fb3fc9 /src/client/util/DragManager.ts | |
parent | cf13604b06b8d8cf37f6e69f19a4092bf2c29d65 (diff) |
lots of changes to fix dragging cards, integrate iconTags with other tags, sizing docs when selected to fit window,
Diffstat (limited to 'src/client/util/DragManager.ts')
-rw-r--r-- | src/client/util/DragManager.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/util/DragManager.ts b/src/client/util/DragManager.ts index d55d193cc..81ea840f1 100644 --- a/src/client/util/DragManager.ts +++ b/src/client/util/DragManager.ts @@ -29,7 +29,7 @@ import { dropActionType } from './DropActionTypes'; import { SnappingManager } from './SnappingManager'; import { UndoManager } from './UndoManager'; -// eslint-disable-next-line @typescript-eslint/no-var-requires +// eslint-disable-next-line @typescript-eslint/no-require-imports const { contextMenuZindex } = require('../views/global/globalCssVariables.module.scss'); // prettier-ignore /** @@ -101,7 +101,6 @@ export namespace DragManager { // event called when the drag operation results in a drop action export class DropEvent { - // eslint-disable-next-line no-useless-constructor constructor( readonly x: number, readonly y: number, |