Skip to content

Commit 075c06f

Browse files
committed
Merge commit '39ffe9ca3dcf394035c763138ee29683622c014c'
2 parents 75e9363 + 39ffe9c commit 075c06f

File tree

8 files changed

+18
-19
lines changed

8 files changed

+18
-19
lines changed

LICENSE

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014-2016 Pavel Reznikov
3+
Copyright (c) 2014-2016 Pavel Reznikov, Dylan Weiss
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -19,4 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
22-

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Join gridstack.js on Slack: https://gridstackjs.troolee.com
4545
- [Using AniJS](#using-anijs)
4646
- [The Team](#the-team)
4747
- [Changes](#changes)
48-
- [v0.2.7-dev (Development version)](#v027-dev-development-version)
48+
- [v0.2.7-dev (Development Version)](#v027-dev-development-version)
4949
- [v0.2.6 (2016-08-17)](#v026-2016-08-17)
5050
- [v0.2.5 (2016-03-02)](#v025-2016-03-02)
5151
- [v0.2.4 (2016-02-15)](#v024-2016-02-15)
@@ -475,14 +475,14 @@ for help.
475475
Changes
476476
=======
477477

478-
#### v0.2.7-dev (Development version)
479-
480-
- update `destroy([detachGrid])` call ([#422](https://github.com/troolee/gridstack.js/issues/422)).
478+
#### v0.2.7-dev (Development Version)
481479

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

484482
- update requirements to the latest versions of jQuery (v3.1.0+) and jquery-ui (v1.12.0+).
485483
- fix jQuery `size()` ([#486](https://github.com/troolee/gridstack.js/issues/486)).
484+
- update `destroy([detachGrid])` call ([#422](https://github.com/troolee/gridstack.js/issues/422)).
485+
- don't mutate options when calling `draggable` and `resizable`. ([#505](https://github.com/troolee/gridstack.js/issues/505)).
486486
- update _notify to allow detach ([#411](https://github.com/troolee/gridstack.js/issues/411)).
487487
- fix code that checks for jquery-ui ([#481](https://github.com/troolee/gridstack.js/issues/481)).
488488
- fix `cellWidth` calculation on empty grid
@@ -577,7 +577,7 @@ License
577577

578578
The MIT License (MIT)
579579

580-
Copyright (c) 2014-2016 Pavel Reznikov
580+
Copyright (c) 2014-2016 Pavel Reznikov, Dylan Weiss
581581

582582
Permission is hereby granted, free of charge, to any person obtaining a copy
583583
of this software and associated documentation files (the "Software"), to deal

bower.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": "0.2.6-dev",
3+
"version": "0.2.7-dev",
44
"homepage": "https://github.com/troolee/gridstack.js",
55
"authors": [
66
"Pavel Reznikov <pashka.reznikov@gmail.com>"

dist/gridstack.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1115,13 +1115,13 @@
11151115
};
11161116

11171117
el
1118-
.draggable(_.extend(this.opts.draggable, {
1118+
.draggable(_.extend({}, this.opts.draggable, {
11191119
containment: this.opts.isNested ? this.container.parent() : null,
11201120
start: onStartMoving,
11211121
stop: onEndMoving,
11221122
drag: dragOrResize
11231123
}))
1124-
.resizable(_.extend(this.opts.resizable, {
1124+
.resizable(_.extend({}, this.opts.resizable, {
11251125
start: onStartMoving,
11261126
stop: onEndMoving,
11271127
resize: dragOrResize

dist/gridstack.min.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/gridstack.min.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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": "0.2.6-dev",
3+
"version": "0.2.7-dev",
44
"description": "gridstack.js is a jQuery plugin for widget layout",
55
"main": "dist/gridstack.js",
66
"repository": {

src/gridstack.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1115,13 +1115,13 @@
11151115
};
11161116

11171117
el
1118-
.draggable(_.extend(this.opts.draggable, {
1118+
.draggable(_.extend({}, this.opts.draggable, {
11191119
containment: this.opts.isNested ? this.container.parent() : null,
11201120
start: onStartMoving,
11211121
stop: onEndMoving,
11221122
drag: dragOrResize
11231123
}))
1124-
.resizable(_.extend(this.opts.resizable, {
1124+
.resizable(_.extend({}, this.opts.resizable, {
11251125
start: onStartMoving,
11261126
stop: onEndMoving,
11271127
resize: dragOrResize

0 commit comments

Comments
 (0)