您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

functions.web.js 273B

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