forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1493659 - Skip the click event handler if touch event has occurre…
…d. r=birtles Tapping the menu button during the panel has shown make the menu button to be unopenable. This cause reason is removing the pointer-events property before the mouse event happens. The tapping event will happen many the event like the following: 1) touchstart 2) touchmove (Long tap only) 3) touchend 4) mousedown 5) mouseup 6) click This patch will detect the touchend event to eat the click event. Differential Revision: https://phabricator.services.mozilla.com/D7827 --HG-- extra : moz-landing-system : lando
- Loading branch information
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters