mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 09:57:32 +09:00
Issue #1053 - Part 1c: Remove references to mobile/android targets and paths
This commit is contained in:
parent
659441da45
commit
b21588597c
80 changed files with 8 additions and 3636 deletions
|
|
@ -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);
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue