opnform-host-nginx/client/composables/useIsIframe.js

7 lines
161 B
JavaScript
Raw Normal View History

2023-12-09 15:47:03 +01:00
export const useIsIframe = () => {
if (import.meta.client) {
2023-12-09 15:47:03 +01:00
return window.location !== window.parent.location || window.frameElement
}
return false
}