Skip to content

Commit

Permalink
Added missing handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
texodus committed Oct 24, 2019
1 parent e5d1ca2 commit 1a12f7c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/features/TouchScrolling.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ var TouchScrolling = Feature.extend('TouchScrolling', {
this.touches = [this.getTouchedCell(grid, event)];
},

handleClick: function() {},

handleDoubleClick: function() {},

handleTouchMove: function(grid, event) {
var currentTouch = this.getTouchedCell(grid, event);
var lastTouch = this.touches[this.touches.length - 1];
Expand Down

0 comments on commit 1a12f7c

Please sign in to comment.