fix(gridster): serialize returns an Array object, not a jQuery object

Fixes #394
This commit is contained in:
vieron
2014-07-16 20:28:54 +02:00
parent e837ded844
commit 93df6cf690
+1 -1
View File
@@ -790,7 +790,7 @@
return $widgets.map($.proxy(function(i, widget) {
var $w = $(widget);
return this.options.serialize_params($w, $w.coords().grid);
}, this));
}, this)).get();
};