handleFocusIn function
Last updated: 2026-03-01T23:25:47.108Z
Location
Metrics
LOC: 16
Complexity: 4
Params: 1
Signature
handleFocusIn(e: FocusEvent): : void
Source Code
function handleFocusIn(e: FocusEvent): void {
const target = e.target as HTMLElement;
if (!isFillableField(target)) return;
if (target.closest(`#${ICON_ID}, #${RULE_POPUP_ID}, #fill-all-notification`))
return;
if (hideTimeout) {
clearTimeout(hideTimeout);
hideTimeout = null;
}
currentTarget = target;
showIcon(target);
}
Dependencies (Outgoing)
| Target | Type |
|---|---|
| isFillableField | calls |
| showIcon | calls |
No incoming dependencies.