From 780f16d9e04ee5aaaf91bb7c6ef15c72cc8aeb45 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Mon, 16 May 2022 15:47:01 -0400 Subject: [PATCH] fix(scroll-assist): touch end events continue to bubble on inputs (#25282) resolves #25229 --- core/src/utils/input-shims/hacks/scroll-assist.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/src/utils/input-shims/hacks/scroll-assist.ts b/core/src/utils/input-shims/hacks/scroll-assist.ts index f7239bce08..5e404341b9 100644 --- a/core/src/utils/input-shims/hacks/scroll-assist.ts +++ b/core/src/utils/input-shims/hacks/scroll-assist.ts @@ -27,8 +27,6 @@ export const enableScrollAssist = ( // focus this input if the pointer hasn't moved XX pixels // and the input doesn't already have focus if (!hasPointerMoved(6, coord, endCoord) && !isFocused(inputEl)) { - ev.stopPropagation(); - // begin the input focus process jsSetFocus(componentEl, inputEl, contentEl, footerEl, keyboardHeight); }