Left Column: Fix non-interactive inputs
This commit is contained in:
parent
d48f9ca66a
commit
eff5a2cd03
@ -136,6 +136,10 @@ export function captureEvents(element: HTMLElement, options: CaptureOptions) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (target.tagName === 'INPUT' || target.tagName === 'TEXTAREA') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
excludedClosestSelector && (target.matches(excludedClosestSelector) || target.closest(excludedClosestSelector))
|
excludedClosestSelector && (target.matches(excludedClosestSelector) || target.closest(excludedClosestSelector))
|
||||||
) {
|
) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user