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.

embedUtils.web.ts 265B

123456789101112
  1. /**
  2. * Checks whether we are loaded in iframe.
  3. *
  4. * @returns {boolean} Whether the current page is loaded in an iframe.
  5. */
  6. export function isEmbedded(): boolean {
  7. try {
  8. return window.self !== window.top;
  9. } catch (e) {
  10. return true;
  11. }
  12. }