Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
12345678910111213141516 |
- /**
- * Checks whether we are loaded in iframe.
- *
- * @returns {boolean} Whether the current page is loaded in an iframe.
- */
- export function inIframe(): boolean {
- if (navigator.product === 'ReactNative') {
- return false;
- }
-
- try {
- return window.self !== window.top;
- } catch (e) {
- return true;
- }
- }
|