1
0
mirror of https://github.com/funamitech/mastodon synced 2024-12-12 13:48:35 +09:00
YuruToot/app/javascript/flavours/glitch/utils/dom_helpers.js
2023-05-26 18:44:18 +02:00

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();
}
}