2017-12-24 08:16:45 +02:00
|
|
|
// Package imports.
|
2020-11-04 19:21:05 +02:00
|
|
|
import { supportsPassiveEvents } from 'detect-passive-events';
|
2017-12-24 08:16:45 +02:00
|
|
|
|
2017-12-27 02:54:28 +02:00
|
|
|
// Focuses the root element.
|
|
|
|
export function focusRoot () {
|
|
|
|
let e;
|
|
|
|
if (document && (e = document.querySelector('.ui')) && (e = e.parentElement)) {
|
|
|
|
e.focus();
|
|
|
|
}
|
|
|
|
}
|