fix(List): element with overflow: overlay style should be considered a scroll container (#10743)

This commit is contained in:
AmazingPromise 2022-06-25 11:44:11 +08:00 committed by GitHub
parent 60bf564c7f
commit 91ef58aac1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@ function isWindow(val: unknown): val is Window {
// get nearest scroll element
// https://github.com/youzan/vant/issues/3823
const overflowScrollReg = /scroll|auto/i;
const overflowScrollReg = /scroll|auto|overlay/i;
export function getScroller(el: HTMLElement, root: ScrollElement = window) {
let node = el;