Files
jitsi-meet/react/features/conference/components/functions.web.ts
2023-04-13 15:49:34 +03:00

13 lines
263 B
TypeScript

export * from './functions.any';
/**
* Whether or not there are always on labels.
*
* @returns {boolean}
*/
export function isAlwaysOnTitleBarEmpty() {
const bar = document.querySelector('#alwaysVisible>div');
return bar?.childNodes.length === 0;
}