We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aabc917 + 194eee0 commit 813db25Copy full SHA for 813db25
1 file changed
src/dd-resizable.ts
@@ -132,7 +132,7 @@ export class DDResizable extends DDBaseImplement implements HTMLElementExtendOpt
132
protected _mouseOver(e: Event): void {
133
// console.log(`${count++} pre-enter ${(this.el as GridItemHTMLElement).gridstackNode._id}`)
134
// already over a child, ignore. Ideally we just call e.stopPropagation() but see https://github.com/gridstack/gridstack.js/issues/2018
135
- if (DDManager.overResizeElement || DDManager.dragElement) return;
+ if (DDManager.overResizeElement === this || DDManager.dragElement) return;
136
DDManager.overResizeElement = this;
137
// console.log(`${count++} enter ${(this.el as GridItemHTMLElement).gridstackNode._id}`)
138
this.el.classList.remove('ui-resizable-autohide');
0 commit comments