File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ Change log
5
5
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
6
6
** Table of Contents** * generated with [ DocToc] ( http://doctoc.herokuapp.com/ ) *
7
7
8
+ - [ 6.0.1-dev (TBD)] ( #601-dev-tbd )
8
9
- [ 6.0.1 (2022-08-27)] ( #601-2022-08-27 )
9
10
- [ 6.0.0 (2022-08-21)] ( #600-2022-08-21 )
10
11
- [ 5.1.1 (2022-06-16)] ( #511-2022-06-16 )
@@ -69,6 +70,10 @@ Change log
69
70
- [ v0.1.0 (2014-11-18)] ( #v010-2014-11-18 )
70
71
71
72
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
73
+
74
+ ## 6.0.1-dev (TBD)
75
+ * fixed [ #2034 ] ( https://github.com/gridstack/gridstack.js/issues/2034 ) ` removeWidget() ` breaking resize handle feedback
76
+
72
77
## 6.0.1 (2022-08-27)
73
78
* fixed ` float(val) ` to set on grid and engine, so save() will read it.
74
79
* fixed [ #2018 ] ( https://github.com/gridstack/gridstack.js/issues/2018 ) mouseover and React different behavior
Original file line number Diff line number Diff line change @@ -118,6 +118,9 @@ export class DDResizable extends DDBaseImplement implements HTMLElementExtendOpt
118
118
this . el . classList . remove ( 'ui-resizable-autohide' ) ;
119
119
this . el . removeEventListener ( 'mouseover' , this . _mouseOver ) ;
120
120
this . el . removeEventListener ( 'mouseout' , this . _mouseOut ) ;
121
+ if ( DDManager . overResizeElement === this ) {
122
+ delete DDManager . overResizeElement ;
123
+ }
121
124
}
122
125
return this ;
123
126
}
You can’t perform that action at this time.
0 commit comments