1
0
mirror of https://github.com/funamitech/mastodon synced 2024-12-14 22:59:46 +09:00
YuruToot/app/javascript/flavours/glitch/utils/dom_helpers.js

8 lines
173 B
JavaScript
Raw Normal View History

2017-12-27 09:54:28 +09:00
// Focuses the root element.
export function focusRoot () {
let e;
if (document && (e = document.querySelector('.ui')) && (e = e.parentElement)) {
e.focus();
}
}