Skip to content

Commit dc7dc4c

Browse files
authored
Merge pull request #1773 from adumesny/master
JQ droppable fix for website
2 parents c3e97d9 + d06d15a commit dc7dc4c

25 files changed

+36
-25
lines changed

demo/web1.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<script type="module" src="https://unpkg.com/ionicons@4.5.10-0/dist/ionicons/ionicons.esm.js"></script>
1414
<script nomodule="" src="https://unpkg.com/ionicons@4.5.10-0/dist/ionicons/ionicons.js"></script>
1515

16-
<script src="../dist/gridstack-h5.js"></script>
16+
<script src="../dist/gridstack-jq.js"></script>
1717
</head>
1818

1919
<body>

demo/web2.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<script type="module" src="https://unpkg.com/ionicons@4.5.10-0/dist/ionicons/ionicons.esm.js"></script>
1414
<script nomodule="" src="https://unpkg.com/ionicons@4.5.10-0/dist/ionicons/ionicons.js"></script>
1515

16-
<script src="../dist/gridstack-h5.js"></script>
16+
<script src="../dist/gridstack-jq.js"></script>
1717

1818
<style type="text/css">
1919
.grid-stack-item-removing {

doc/CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Change log
55
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
66
**Table of Contents** *generated with [DocToc](http://doctoc.herokuapp.com/)*
77

8+
- [4.2.5 (2021-5-31)](#425-2021-5-31)
89
- [4.2.4 (2021-5-29)](#424-2021-5-29)
910
- [4.2.3 (2021-5-8)](#423-2021-5-8)
1011
- [4.2.2 (2021-4-23)](#422-2021-4-23)
@@ -57,6 +58,10 @@ Change log
5758
- [v0.1.0 (2014-11-18)](#v010-2014-11-18)
5859

5960
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
61+
## 4.2.5 (2021-5-31)
62+
63+
* fix for website with JQ `droppable('destroy')` giving error
64+
6065
## 4.2.4 (2021-5-29)
6166

6267
* fix [#1760](https://github.com/gridstack/gridstack.js/issues/1760) `removable:true` working again (broke in 4.x)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gridstack",
3-
"version": "4.2.4-dev",
3+
"version": "4.2.5",
44
"description": "TypeScript/JS lib for dashboard layout and creation, no external dependencies, with many wrappers (React, Angular, Vue, Ember, knockout...)",
55
"main": "./dist/gridstack.js",
66
"types": "./dist/gridstack.d.ts",

src/gridstack-dd.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack-dd.ts 4.2.4-dev
2+
* gridstack-dd.ts 4.2.5
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

src/gridstack-ddi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack-ddi.ts 4.2.4-dev
2+
* gridstack-ddi.ts 4.2.5
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

src/gridstack-engine.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack-engine.ts 4.2.4-dev
2+
* gridstack-engine.ts 4.2.5
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

src/gridstack-h5.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* index-h5.ts 4.2.4-dev - everything you need for a Grid that uses HTML5 native drag&drop
2+
* index-h5.ts 4.2.5 - everything you need for a Grid that uses HTML5 native drag&drop
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

src/gridstack-jq.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* index-jq.ts 4.2.4-dev - everything you need for a Grid that uses Jquery-ui drag&drop (original, full feature)
2+
* index-jq.ts 4.2.5 - everything you need for a Grid that uses Jquery-ui drag&drop (original, full feature)
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

src/gridstack-poly.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack-poly.ts 4.2.4-dev - used for older browser support (not currently supported in v2+)
2+
* gridstack-poly.ts 4.2.5 - used for older browser support (not currently supported in v2+)
33
* Copyright (c) 2021 Alain Dumesny - see GridStack root license
44
*/
55

0 commit comments

Comments
 (0)