summaryrefslogtreecommitdiffstats
path: root/accessible/jsat/Gestures.jsm
diff options
context:
space:
mode:
Diffstat (limited to 'accessible/jsat/Gestures.jsm')
-rw-r--r--accessible/jsat/Gestures.jsm4
1 files changed, 1 insertions, 3 deletions
diff --git a/accessible/jsat/Gestures.jsm b/accessible/jsat/Gestures.jsm
index cc431614c..dd21f040f 100644
--- a/accessible/jsat/Gestures.jsm
+++ b/accessible/jsat/Gestures.jsm
@@ -76,8 +76,6 @@ const EDGE = 0.1;
const TIMEOUT_MULTIPLIER = 1;
// A single pointer down/up sequence periodically precedes the tripple swipe
// gesture on Android. This delay acounts for that.
-const IS_ANDROID = Utils.MozBuildApp === 'mobile/android' &&
- Utils.AndroidSdkVersion >= 14;
/**
* A point object containing distance travelled data.
@@ -206,7 +204,7 @@ this.GestureTracker = { // jshint ignore:line
if (aDetail.type !== 'pointerdown') {
return;
}
- let GestureConstructor = aGesture || (IS_ANDROID ? DoubleTap : Tap);
+ let GestureConstructor = aGesture || Tap;
this._create(GestureConstructor);
this._update(aDetail, aTimeStamp);
},