diff options
Diffstat (limited to 'accessible/jsat/PointerAdapter.jsm')
-rw-r--r-- | accessible/jsat/PointerAdapter.jsm | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/accessible/jsat/PointerAdapter.jsm b/accessible/jsat/PointerAdapter.jsm index 1fb77646bf..1f19974fc8 100644 --- a/accessible/jsat/PointerAdapter.jsm +++ b/accessible/jsat/PointerAdapter.jsm @@ -39,13 +39,6 @@ var PointerRelay = { // jshint ignore:line delete this._eventsOfInterest; switch (Utils.widgetToolkit) { - case 'android': - this._eventsOfInterest = { - 'touchstart' : true, - 'touchmove' : true, - 'touchend' : true }; - break; - default: // Desktop. this._eventsOfInterest = { @@ -110,11 +103,6 @@ var PointerRelay = { // jshint ignore:line target: aEvent.target }]; - if (Utils.widgetToolkit === 'android' && - changedTouches.length === 1 && changedTouches[0].identifier === 1) { - return; - } - if (changedTouches.length === 1 && changedTouches[0].identifier === SYNTH_ID) { return; |