mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
10 lines
293 B
JavaScript
10 lines
293 B
JavaScript
//#region src/dom/focus.ts
|
|
function getDeepActiveElement(root = document) {
|
|
let active = root.activeElement;
|
|
while (active?.shadowRoot?.activeElement) active = active.shadowRoot.activeElement;
|
|
return active;
|
|
}
|
|
//#endregion
|
|
export { getDeepActiveElement };
|
|
|
|
//# sourceMappingURL=focus.js.map
|