build dist
This commit is contained in:
parent
907464c891
commit
9c01f02f1a
3 changed files with 5 additions and 9 deletions
8
dist/gridstack.js
vendored
8
dist/gridstack.js
vendored
|
|
@ -87,11 +87,6 @@
|
|||
return n != this.node && Utils.isIntercepted(n, this.nn);
|
||||
},
|
||||
|
||||
_didCollideFloat: function(bn) {
|
||||
return this.n != bn &&
|
||||
Utils.isIntercepted({x: this.n.x, y: this.newY, width: this.n.width, height: this.n.height}, bn);
|
||||
},
|
||||
|
||||
_didCollide: function(bn) {
|
||||
return Utils.isIntercepted({x: this.n.x, y: this.newY, width: this.n.width, height: this.n.height}, bn);
|
||||
},
|
||||
|
|
@ -108,7 +103,7 @@
|
|||
if (!match) {
|
||||
throw new Error('Invalid height');
|
||||
}
|
||||
heightUnit = match[2];
|
||||
heightUnit = match[2] || 'px';
|
||||
height = parseFloat(match[1]);
|
||||
}
|
||||
return {height: height, unit: heightUnit};
|
||||
|
|
@ -1450,6 +1445,7 @@
|
|||
scope.GridStackUI = GridStack;
|
||||
|
||||
scope.GridStackUI.Utils = Utils;
|
||||
scope.GridStackUI.Engine = GridStackEngine;
|
||||
|
||||
$.fn.gridstack = function(opts) {
|
||||
return this.each(function() {
|
||||
|
|
|
|||
4
dist/gridstack.min.js
vendored
4
dist/gridstack.min.js
vendored
File diff suppressed because one or more lines are too long
2
dist/gridstack.min.map
vendored
2
dist/gridstack.min.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue