throttling to 60ms to prevent overlapping

This commit is contained in:
vieron
2012-07-24 16:56:16 +02:00
parent 0016c99a61
commit 06b53fdc19

View File

@@ -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');