From cfb0dfc3456a8aea7e440271558b7de35d140c83 Mon Sep 17 00:00:00 2001 From: Dylan Weiss Date: Sat, 13 Feb 2016 20:48:49 -0500 Subject: [PATCH] Fixed names of options. --- src/gridstack.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gridstack.js b/src/gridstack.js index 3f90981..09bfba4 100644 --- a/src/gridstack.js +++ b/src/gridstack.js @@ -708,8 +708,8 @@ drag: drag_or_resize })) .resizable(_.extend(this.opts.resizable, { - resizestart: on_start_moving, - resizestop: on_end_moving, + start: on_start_moving, + stop: on_end_moving, resize: drag_or_resize }));