jitsi-meet/react/features/base/util/embedUtils.web.ts
theluyuan 38ba663466
Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
init
2025-09-02 14:49:16 +08:00

13 lines
265 B
TypeScript

/**
* Checks whether we are loaded in iframe.
*
* @returns {boolean} Whether the current page is loaded in an iframe.
*/
export function isEmbedded(): boolean {
try {
return window.self !== window.top;
} catch (e) {
return true;
}
}