Skip to content

Commit

Permalink
fix(gridster): serialize returns an Array object, not a jQuery object
Browse files Browse the repository at this point in the history
Fixes #394
  • Loading branch information
vieron committed Jul 16, 2014
1 parent e837ded commit 93df6cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jquery.gridster.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
};


Expand Down

0 comments on commit 93df6cf

Please sign in to comment.