Merge pull request #19 from navedqb/4824--fix-console-log-errors-in-inplace
fix: Improve focusable element handlingpull/4827/head
commit
ae90cc0e34
|
@ -40,7 +40,7 @@ const FocusTrap = BaseFocusTrap.extend('focustrap', {
|
||||||
: DomHandler.getFirstFocusableElement(el, this.getComputedSelector(el.$_pfocustrap_focusableselector))
|
: DomHandler.getFirstFocusableElement(el, this.getComputedSelector(el.$_pfocustrap_focusableselector))
|
||||||
: DomHandler.getFirstFocusableElement(_el);
|
: DomHandler.getFirstFocusableElement(_el);
|
||||||
|
|
||||||
return ObjectUtils.isNotEmpty(focusableElement) ? focusableElement : findNextFocusableElement(_el.nextSibling);
|
return ObjectUtils.isNotEmpty(focusableElement) ? focusableElement : _el.nextSibling ? findNextFocusableElement(_el.nextSibling) : null;
|
||||||
};
|
};
|
||||||
|
|
||||||
DomHandler.focus(findNextFocusableElement(mutation.nextSibling));
|
DomHandler.focus(findNextFocusableElement(mutation.nextSibling));
|
||||||
|
|
Loading…
Reference in New Issue