mirror of
https://github.com/funamitech/mastodon
synced 2024-12-12 13:48:35 +09:00
8 lines
173 B
JavaScript
8 lines
173 B
JavaScript
// Focuses the root element.
|
|
export function focusRoot () {
|
|
let e;
|
|
if (document && (e = document.querySelector('.ui')) && (e = e.parentElement)) {
|
|
e.focus();
|
|
}
|
|
}
|