From 06b53fdc192bff54cd5af80542d02de1263f24c4 Mon Sep 17 00:00:00 2001 From: vieron Date: Tue, 24 Jul 2012 16:56:16 +0200 Subject: [PATCH] throttling to 60ms to prevent overlapping --- 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 4622137acf..97c3ff1ba1 100644 --- a/src/jquery.gridster.js +++ b/src/jquery.gridster.js @@ -399,7 +399,7 @@ drag: throttle(function(event, ui) { self.on_drag.call(self, event, ui); self.$el.trigger('gridster:drag'); - }, 130) + }, 60) }); this.drag_api = this.$el.draggable(draggable_options).data('draggable');