clean and build

This commit is contained in:
Ross Harrison 2016-04-21 11:45:59 -04:00
commit 4399e1a455
3 changed files with 4 additions and 4 deletions

4
dist/gridstack.js vendored
View file

@ -1253,7 +1253,7 @@
el.each(function(index, el) {
el = $(el);
var node = el.data('_gridstack_node');
if (typeof node == 'undefined' || node === null) {
if (self.opts.staticGrid || typeof node == 'undefined' || node === null) {
return;
}
@ -1273,7 +1273,7 @@
el.each(function(index, el) {
el = $(el);
var node = el.data('_gridstack_node');
if (typeof node == 'undefined' || node === null) {
if (self.opts.staticGrid || typeof node == 'undefined' || node === null) {
return;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long