fix(wysiwyg):Improve Wysiwyg editor

This commit is contained in:
2025-06-24 12:24:02 +00:00
parent 35a648d450
commit 08a4c361fa
4 changed files with 311 additions and 26 deletions

View File

@@ -168,7 +168,6 @@ export class DeesInputWysiwyg extends DeesInputBase<string> {
dragHandle.className = 'drag-handle';
dragHandle.draggable = true;
dragHandle.addEventListener('dragstart', (e) => this.dragDropHandler.handleDragStart(e, block));
dragHandle.addEventListener('dragend', () => this.dragDropHandler.handleDragEnd());
wrapper.appendChild(dragHandle);
}