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

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. }