8 lines
173 B
JavaScript
Raw Normal View History

2017-12-26 16:54:28 -08:00
// Focuses the root element.
export function focusRoot () {
let e;
if (document && (e = document.querySelector('.ui')) && (e = e.parentElement)) {
e.focus();
}
}