mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-29 11:23:42 +01:00
7 lines
173 B
JavaScript
7 lines
173 B
JavaScript
// Focuses the root element.
|
|
export function focusRoot () {
|
|
let e;
|
|
if (document && (e = document.querySelector('.ui')) && (e = e.parentElement)) {
|
|
e.focus();
|
|
}
|
|
}
|