You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

functions.web.ts 263B

123456789101112
  1. export * from './functions.any';
  2. /**
  3. * Whether or not there are always on labels.
  4. *
  5. * @returns {boolean}
  6. */
  7. export function isAlwaysOnTitleBarEmpty() {
  8. const bar = document.querySelector('#alwaysVisible>div');
  9. return bar?.childNodes.length === 0;
  10. }