9
common/resources/client/utils/dom/is-any-input-focused.ts
Executable file
9
common/resources/client/utils/dom/is-any-input-focused.ts
Executable file
@@ -0,0 +1,9 @@
|
||||
export function isAnyInputFocused(doc?: Document): boolean {
|
||||
if (!doc) {
|
||||
doc = document;
|
||||
}
|
||||
return doc.activeElement
|
||||
? ['INPUT', 'TEXTAREA'].includes(doc.activeElement.tagName) ||
|
||||
(doc.activeElement as HTMLElement).isContentEditable
|
||||
: false;
|
||||
}
|
||||
Reference in New Issue
Block a user