From 8a70e0e639356fe2d8b075a1f8601dbccc06e25d Mon Sep 17 00:00:00 2001 From: Adam Shaw Date: Sat, 23 Aug 2014 15:10:00 -0700 Subject: [PATCH] make autoscroll work while selecting --- src/common/Grid.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/Grid.js b/src/common/Grid.js index 3858f9a..2917cc9 100644 --- a/src/common/Grid.js +++ b/src/common/Grid.js @@ -95,6 +95,7 @@ $.extend(Grid.prototype, { // if 'selectable' is enabled, this listener also detects selections. var dragListener = new DragListener(this.coordMap, { //distance: 5, // needs more work if we want dayClick to fire correctly + scroll: view.opt('dragScroll'), dragStart: function() { view.unselect(); // since we could be rendering a new selection, we want to clear any old one },