From e9dc5134573d0a83413ad86b45e30587ca45b65f Mon Sep 17 00:00:00 2001 From: Pedro Almeida Date: Tue, 14 Jan 2014 14:40:16 +0000 Subject: [PATCH] fix(gridster): resize.axes default option only 'both' If passing resize.axes option it will be what is defined and not ['x','y','both']. --- 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 f883bd490..eb5de0f88 100644 --- a/src/jquery.gridster.js +++ b/src/jquery.gridster.js @@ -36,7 +36,7 @@ }, resize: { enabled: false, - axes: ['x', 'y', 'both'], + axes: ['both'], handle_append_to: '', handle_class: 'gs-resize-handle', max_size: [Infinity, Infinity]