diff --git a/core/src/components/menu/menu.tsx b/core/src/components/menu/menu.tsx index 6bbdf1ea34..6a3d741bf2 100644 --- a/core/src/components/menu/menu.tsx +++ b/core/src/components/menu/menu.tsx @@ -229,7 +229,7 @@ AFTER: @Listen('click', { capture: true }) onBackdropClick(ev: any) { - if (this._isOpen && this.lastOnEnd < ev.currentTime - 100) { + if (this._isOpen && this.lastOnEnd < ev.timeStamp - 100) { const shouldClose = (ev.composedPath) ? !ev.composedPath().includes(this.menuInnerEl) : false;