mirror of
https://github.com/google/blockly.git
synced 2026-01-06 16:40:07 +01:00
fix: Fix scrolling of menus on mobile. (#6911)
This commit is contained in:
@@ -104,7 +104,7 @@ export class Menu {
|
||||
this.mouseOverHandler = browserEvents.conditionalBind(
|
||||
element, 'pointerover', this, this.handleMouseOver, true);
|
||||
this.clickHandler = browserEvents.conditionalBind(
|
||||
element, 'pointerdown', this, this.handleClick, true);
|
||||
element, 'pointerup', this, this.handleClick, true);
|
||||
this.mouseEnterHandler = browserEvents.conditionalBind(
|
||||
element, 'pointerenter', this, this.handleMouseEnter, true);
|
||||
this.mouseLeaveHandler = browserEvents.conditionalBind(
|
||||
|
||||
Reference in New Issue
Block a user