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.

iframeUtils.ts 339B

12345678910111213141516
  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 inIframe(): boolean {
  7. if (navigator.product === 'ReactNative') {
  8. return false;
  9. }
  10. try {
  11. return window.self !== window.top;
  12. } catch (e) {
  13. return true;
  14. }
  15. }