mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-15 19:33:32 +00: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();
|
|
}
|
|
}
|