From a5b1a51e6ec1da51b6ef9264cf614994c4627bb4 Mon Sep 17 00:00:00 2001 From: Max Lynch Date: Wed, 9 Oct 2013 10:30:22 -0500 Subject: [PATCH] Side menu threshold fix --- js/controllers/sideMenuController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/controllers/sideMenuController.js b/js/controllers/sideMenuController.js index 72e1cffa22..63dff0c851 100644 --- a/js/controllers/sideMenuController.js +++ b/js/controllers/sideMenuController.js @@ -247,7 +247,7 @@ } // Calculate difference from the tap points - if(Math.abs(this._lastX - this._startX) > this.dragThresholdX) { + if(!this._isDragging && Math.abs(this._lastX - this._startX) > this.dragThresholdX) { // if the difference is greater than threshold, start dragging using the current // point as the starting point this._startX = this._lastX