You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
447 B
14 lines
447 B
// Package imports.
|
|
import detectPassiveEvents from 'detect-passive-events';
|
|
|
|
// This will either be a passive lister options object (if passive
|
|
// events are supported), or `false`.
|
|
export const withPassive = detectPassiveEvents.hasSupport ? { passive: true } : false;
|
|
|
|
// Focuses the root element.
|
|
export function focusRoot () {
|
|
let e;
|
|
if (document && (e = document.querySelector('.ui')) && (e = e.parentElement)) {
|
|
e.focus();
|
|
}
|
|
}
|
|
|