Add support of iframe for keyboard event
Really simple piece of code to add support of iframe in keyboard event activeElement test.
This commit is contained in:
parent
3ba211133d
commit
636eaffd41
@ -53,10 +53,14 @@ function bindKeyboardHandler(element, i) {
|
|||||||
|
|
||||||
var activeElement = document.activeElement ? document.activeElement : i.ownerDocument.activeElement;
|
var activeElement = document.activeElement ? document.activeElement : i.ownerDocument.activeElement;
|
||||||
if (activeElement) {
|
if (activeElement) {
|
||||||
|
if (activeElement.tagName === 'IFRAME') {
|
||||||
|
activeElement = activeElement.contentDocument.activeElement;
|
||||||
|
} else {
|
||||||
// go deeper if element is a webcomponent
|
// go deeper if element is a webcomponent
|
||||||
while (activeElement.shadowRoot) {
|
while (activeElement.shadowRoot) {
|
||||||
activeElement = activeElement.shadowRoot.activeElement;
|
activeElement = activeElement.shadowRoot.activeElement;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if (h.isEditable(activeElement)) {
|
if (h.isEditable(activeElement)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user