You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/CHANGES.md
+5Lines changed: 5 additions & 0 deletions
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
+
-[9.5.0-dev (TBD)](#950-dev-tbd)
8
9
-[9.5.0 (2023-10-26)](#950-2023-10-26)
9
10
-[9.4.0 (2023-10-15)](#940-2023-10-15)
10
11
-[9.3.0 (2023-09-30)](#930-2023-09-30)
@@ -103,6 +104,10 @@ Change log
103
104
104
105
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
105
106
107
+
## 9.5.0-dev (TBD)
108
+
* fix [#2525](https://github.com/gridstack/gridstack.js/commit/2525) Fixed unhandled exception happening in _mouseMove handler
109
+
* fix potential crash in doContentResize() if grid gets deleted by the time the delay happens
110
+
106
111
## 9.5.0 (2023-10-26)
107
112
* feat [#1275](https://github.com/gridstack/gridstack.js/issues/1275) div scale support - Thank you [elmehdiamlou](https://github.com/elmehdiamlou) for implementing this teh right way (add scale to current code)
108
113
* fix [#2489](https://github.com/gridstack/gridstack.js/commit/2489) moved the dropped event handler to after doing everything (no more setTimeout) - Thanks [arnoudb](https://github.com/arnoudb) for suggesting a fix.
Copy file name to clipboardExpand all lines: src/gridstack.ts
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1699,6 +1699,7 @@ export class GridStack {
1699
1699
// update any gridItem height with sizeToContent, but wait for DOM $animation_speed to settle if we changed column count
1700
1700
// TODO: is there a way to know what the final (post animation) size of the content will be so we can animate the column width and height together rather than sequentially ?
1701
1701
setTimeout(()=>{
1702
+
if(!this.engine)return;// we've been deleted in between!
0 commit comments