~cytrogen/masto-fe

ref: 20a89f1c8eefa0f766a4650be4d2e5f1fa92ee71 masto-fe/app/javascript/flavours/glitch/utils/dom_helpers.js -rw-r--r-- 173 bytes
20a89f1c — Cytrogen [feature] Bookmark folders UI a month ago
                                                                                
1
2
3
4
5
6
7
//  Focuses the root element.
export function focusRoot () {
  let e;
  if (document && (e = document.querySelector(".ui")) && (e = e.parentElement)) {
    e.focus();
  }
}