Skip to content

Commit

Permalink
Merge pull request #509 from radiolips/bugfix/422
Browse files Browse the repository at this point in the history
Bugfix/422
  • Loading branch information
radiolips authored Aug 17, 2016
2 parents 723cb23 + 042ba6a commit 9c0bcd7
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ Join gridstack.js on Slack: https://gridstackjs.troolee.com
- [Using AniJS](#using-anijs)
- [The Team](#the-team)
- [Changes](#changes)
- [v0.2.7-dev (Development version)](#v027-dev-development-version)
- [v0.2.6 (2016-08-17)](#v026-2016-08-17)
- [v0.2.5 (2016-03-02)](#v025-2016-03-02)
- [v0.2.4 (2016-02-15)](#v024-2016-02-15)
Expand Down Expand Up @@ -474,6 +475,10 @@ for help.
Changes
=======

#### v0.2.7-dev (Development version)

- update `destroy([detachGrid])` call ([#422](https://github.com/troolee/gridstack.js/issues/422)).

#### v0.2.6 (2016-08-17)

- update requirements to the latest versions of jQuery (v3.1.0+) and jquery-ui (v1.12.0+).
Expand Down
3 changes: 2 additions & 1 deletion dist/gridstack.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* gridstack.js 0.2.6
* gridstack.js 0.2.7-dev
* http://troolee.github.io/gridstack.js/
* (c) 2014-2016 Pavel Reznikov
* gridstack.js may be freely distributed under the MIT license.
Expand Down Expand Up @@ -1244,6 +1244,7 @@
this.disable();
if (typeof detachGrid != 'undefined' && !detachGrid) {
this.removeAll(false);
this.container.removeData('gridstack');
} else {
this.container.remove();
}
Expand Down
4 changes: 2 additions & 2 deletions dist/gridstack.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/gridstack.min.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/gridstack.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* gridstack.js 0.2.6
* gridstack.js 0.2.7-dev
* http://troolee.github.io/gridstack.js/
* (c) 2014-2016 Pavel Reznikov
* gridstack.js may be freely distributed under the MIT license.
Expand Down Expand Up @@ -1244,6 +1244,7 @@
this.disable();
if (typeof detachGrid != 'undefined' && !detachGrid) {
this.removeAll(false);
this.container.removeData('gridstack');
} else {
this.container.remove();
}
Expand Down

0 comments on commit 9c0bcd7

Please sign in to comment.