Skip to content

Commit 93df6cf

Browse files
committed
fix(gridster): serialize returns an Array object, not a jQuery object
Fixes #394
1 parent e837ded commit 93df6cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jquery.gridster.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,7 @@
790790
return $widgets.map($.proxy(function(i, widget) {
791791
var $w = $(widget);
792792
return this.options.serialize_params($w, $w.coords().grid);
793-
}, this));
793+
}, this)).get();
794794
};
795795

796796

0 commit comments

Comments
 (0)