From 93df6cf6907fd0fb8787b3d068c9a9c467dcc020 Mon Sep 17 00:00:00 2001 From: vieron Date: Wed, 16 Jul 2014 20:28:54 +0200 Subject: [PATCH] fix(gridster): serialize returns an Array object, not a jQuery object Fixes #394 --- src/jquery.gridster.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jquery.gridster.js b/src/jquery.gridster.js index c9ddcb3b4..17b5da1fe 100755 --- a/src/jquery.gridster.js +++ b/src/jquery.gridster.js @@ -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(); };